source:
trunk/sys/dietlibc/wcslen.c
@
385
| Last change on this file since 385 was 1, checked in by , 9 years ago | |
|---|---|
| File size: 105 bytes | |
| Line | |
|---|---|
| 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.
