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

LibC, LibM: Add functions needed to compile python3

This commit is contained in:
Emanuel Sprung 2019-11-11 14:08:20 +01:00 committed by Andreas Kling
parent 3042c942d8
commit e7affa24dc
7 changed files with 136 additions and 1 deletions

View file

@ -11,7 +11,12 @@ __BEGIN_DECLS
size_t wcslen(const wchar_t*);
wchar_t* wcscpy(wchar_t*, const wchar_t*);
wchar_t* wcsncpy(wchar_t*, const wchar_t*, size_t);
int wcscmp(const wchar_t*, const wchar_t*);
wchar_t* wcschr(const wchar_t*, int);
const wchar_t* wcsrchr(const wchar_t*, wchar_t);
wchar_t* wcscat(wchar_t*, const wchar_t*);
wchar_t* wcstok(wchar_t*, const wchar_t*, wchar_t**);
wchar_t* wcsncat(wchar_t*, const wchar_t*, size_t);
__END_DECLS