mirror of
https://github.com/fluencelabs/musl
synced 2025-06-29 22:51:55 +00:00
9 lines
109 B
C
9 lines
109 B
C
#include <wchar.h>
|
|
|
|
size_t wcslen(const wchar_t *s)
|
|
{
|
|
const wchar_t *a;
|
|
for (a=s; *s; s++);
|
|
return s-a;
|
|
}
|