mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:27:35 +00:00
LibC: Add wcstol() and wcstoll() stubs
This commit is contained in:
parent
ec42f864d4
commit
3c68f557a9
2 changed files with 23 additions and 8 deletions
|
@ -43,7 +43,9 @@ int wcsncmp(const wchar_t*, const wchar_t*, size_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);
|
||||
wchar_t* wcstok(wchar_t*, const wchar_t*, wchar_t**);
|
||||
long wcstol(const wchar_t*, wchar_t**, int);
|
||||
long long wcstoll(const wchar_t*, wchar_t**, int);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue