source:
trunk/sys/dietlibc/wcslen.c
@
251
Last change on this file since 251 was 1, checked in by , 8 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.