mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:07:34 +00:00
LibC: Implement mblen()
This commit is contained in:
parent
496988de47
commit
0e990a4be8
2 changed files with 9 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue