source: trunk/sys/dietlibc/wcslen.c @ 123

Last change on this file since 123 was 1, checked in by alain, 7 years ago

First import

File size: 105 bytes
Line 
1#include <wchar.h>
2
3size_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.