1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:37:45 +00:00

LibC: Implement wmemcmp

This commit is contained in:
Daniel Bertalan 2021-10-16 09:52:54 +02:00 committed by Linus Groh
parent 685045176b
commit 57f0c12b9a
2 changed files with 10 additions and 0 deletions

View file

@ -60,5 +60,6 @@ int swprintf(wchar_t*, size_t, const wchar_t*, ...);
int wcwidth(wchar_t);
size_t wcsrtombs(char*, const wchar_t**, size_t, mbstate_t*);
size_t mbsrtowcs(wchar_t*, const char**, size_t, mbstate_t*);
int wmemcmp(const wchar_t*, const wchar_t*, size_t);
__END_DECLS