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

LibC: Implement mbsrtowcs

This commit is contained in:
Tim Schumacher 2021-10-10 21:34:00 +02:00 committed by Brian Gianforcaro
parent b0babd062e
commit 420bdccf0b
3 changed files with 86 additions and 0 deletions

View file

@ -57,5 +57,6 @@ long double wcstold(const wchar_t*, wchar_t**);
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*);
__END_DECLS