source:
trunk/sys/dietlibc/wcslen.c
@
357
| Last change on this file since 357 was 1, checked in by , 9 years ago | |
|---|---|
| File size: 105 bytes | |
| Rev | Line | |
|---|---|---|
| [1] | 1 | #include <wchar.h> |
| 2 | ||
| 3 | size_t wcslen(const wchar_t* s) { | |
| 4 | size_t i; | |
| 5 | for (i=0; s[i]; ++i) ; | |
| 6 | return i; | |
| 7 | } |
Note: See TracBrowser
for help on using the repository browser.
