mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:07:34 +00:00
LibC: Stub out wcstoull
This commit is contained in:
parent
a65f52d8de
commit
783ddd261d
2 changed files with 7 additions and 0 deletions
|
@ -423,4 +423,10 @@ unsigned long wcstoul(const wchar_t*, wchar_t**, int)
|
||||||
dbgln("TODO: Implement wcstoul()");
|
dbgln("TODO: Implement wcstoul()");
|
||||||
TODO();
|
TODO();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned long long wcstoull(const wchar_t*, wchar_t**, int)
|
||||||
|
{
|
||||||
|
dbgln("TODO: Implement wcstoull()");
|
||||||
|
TODO();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,5 +48,6 @@ wchar_t* wmemcpy(wchar_t*, const wchar_t*, size_t);
|
||||||
wchar_t* wmemset(wchar_t*, wchar_t, size_t);
|
wchar_t* wmemset(wchar_t*, wchar_t, size_t);
|
||||||
wchar_t* wmemmove(wchar_t*, const wchar_t*, size_t);
|
wchar_t* wmemmove(wchar_t*, const wchar_t*, size_t);
|
||||||
unsigned long wcstoul(const wchar_t*, wchar_t**, int);
|
unsigned long wcstoul(const wchar_t*, wchar_t**, int);
|
||||||
|
unsigned long long wcstoull(const wchar_t*, wchar_t**, int);
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue