1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:07:35 +00:00

LibC: Implement wcsstr

This commit is contained in:
Tim Schumacher 2021-09-22 08:54:23 +00:00 committed by Brian Gianforcaro
parent 1b078f87b7
commit 5ac2e84264
3 changed files with 51 additions and 0 deletions

View file

@ -42,5 +42,6 @@ int wcscoll(const wchar_t*, const wchar_t*);
int wctob(wint_t);
int mbsinit(const mbstate_t*);
wchar_t* wcspbrk(const wchar_t*, const wchar_t*);
wchar_t* wcsstr(const wchar_t*, const wchar_t*);
__END_DECLS