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

LibC: Add wcsncmp()

Taken from strncmp(), like wcscmp() in ef40ebb. :^)
This commit is contained in:
Linus Groh 2021-01-18 09:57:12 +01:00 committed by Andreas Kling
parent 2cc3d68615
commit ec42f864d4
2 changed files with 14 additions and 0 deletions

View file

@ -39,6 +39,7 @@ size_t wcslen(const wchar_t*);
wchar_t* wcscpy(wchar_t*, const wchar_t*);
wchar_t* wcsncpy(wchar_t*, const wchar_t*, size_t);
int wcscmp(const wchar_t*, const wchar_t*);
int wcsncmp(const wchar_t*, const wchar_t*, size_t);
wchar_t* wcschr(const wchar_t*, int);
const wchar_t* wcsrchr(const wchar_t*, wchar_t);
wchar_t* wcscat(wchar_t*, const wchar_t*);