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
/
wcswcs.c
1
#include <wchar.h>
2
3
wchar_t *wcswcs(const wchar_t *haystack, const wchar_t *needle)
4
{
5
return wcsstr(haystack, needle);
6
}