mirror of
https://github.com/fluencelabs/musl
synced 2025-05-14 00:01:35 +00:00
7 lines
122 B
C
7 lines
122 B
C
#include <wchar.h>
|
|
|
|
wchar_t *wcswcs(const wchar_t *haystack, const wchar_t *needle)
|
|
{
|
|
return wcsstr(haystack, needle);
|
|
}
|