projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix tabs/spaces in memcpy.s
[oweals/musl.git]
/
src
/
string
/
wcslen.c
1
#include <wchar.h>
2
3
size_t wcslen(const wchar_t *s)
4
{
5
const wchar_t *a;
6
for (a=s; *s; s++);
7
return s-a;
8
}