Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
string
/
wcslen.c
blob: 1b7b66550c618a2126fdd92eefa0ea38af48d356 [
file
] [
log
] [
blame
]
#include
<wchar.h>
size_t
wcslen
(
const
wchar_t
*
s
)
{
const
wchar_t
*
a
;
for
(
a
=
s
;
*
s
;
s
++);
return
s
-
a
;
}