1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:47:44 +00:00

LibC: Implement wcsrtombs

This commit is contained in:
Tim Schumacher 2021-10-08 01:22:27 +02:00 committed by Brian Gianforcaro
parent fccb06b2cd
commit b0babd062e
3 changed files with 91 additions and 0 deletions

View file

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