projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
arm assembly changes for clang compatibility
[oweals/musl.git]
/
src
/
string
/
wmemchr.c
1
#include <wchar.h>
2
3
wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n)
4
{
5
for (; n && *s != c; n--, s++);
6
return n ? (wchar_t *)s : 0;
7
}