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

LibC: Implement wcs{,c}spn()

This commit is contained in:
Ali Mohammad Pur 2021-12-19 20:51:30 +03:30 committed by Ali Mohammad Pur
parent 4f8d095f5a
commit 3b281baf75
2 changed files with 28 additions and 0 deletions

View file

@ -66,5 +66,7 @@ size_t mbsrtowcs(wchar_t*, const char**, size_t, mbstate_t*);
int wmemcmp(const wchar_t*, const wchar_t*, size_t);
size_t wcsnrtombs(char*, const wchar_t**, size_t, size_t, mbstate_t*);
size_t mbsnrtowcs(wchar_t*, const char**, size_t, size_t, mbstate_t*);
size_t wcscspn(const wchar_t* wcs, const wchar_t* reject);
size_t wcsspn(const wchar_t* wcs, const wchar_t* accept);
__END_DECLS