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

LibC: Implement mbsinit and mbrtowc

This commit is contained in:
Tim Schumacher 2021-06-05 12:44:01 +02:00 committed by Andreas Kling
parent 405f3d0aa3
commit a1617faf44
2 changed files with 147 additions and 6 deletions

View file

@ -19,6 +19,7 @@ typedef __WINT_TYPE__ wint_t;
typedef unsigned long int wctype_t;
typedef struct {
unsigned char bytes[4];
} mbstate_t;
size_t wcslen(const wchar_t*);