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

LibC: Implement mblen()

This commit is contained in:
Jelle Raaijmakers 2021-06-04 01:46:41 +02:00 committed by Andreas Kling
parent 496988de47
commit 0e990a4be8
2 changed files with 9 additions and 0 deletions

View file

@ -59,6 +59,7 @@ char* mktemp(char*);
int mkstemp(char*);
char* mkdtemp(char*);
void* bsearch(const void* key, const void* base, size_t nmemb, size_t size, int (*compar)(const void*, const void*));
int mblen(char const*, size_t);
size_t mbstowcs(wchar_t*, const char*, size_t);
int mbtowc(wchar_t*, const char*, size_t);
int wctomb(char*, wchar_t);