wcsstr.c

The libc implementation

Author

Marcel Sondaar

License

Public Domain

Summary
wcsstr.cThe libc implementation
Functions
wcsstrFinds the first occurance of s1 in s2

Functions

wcsstr

wchar_t * wcsstr(const wchar_t *s1,
const wchar_t *s2)

Finds the first occurance of s1 in s2

Returns a pointer to the location where s1 is contained in s2

Returns NULL if s1 could not be found inside s2

wchar_t * wcsstr(const wchar_t *s1,
const wchar_t *s2)
Finds the first occurance of s1 in s2