mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-20 16:28:54 +00:00
LibC: Stub out wcstoul
This commit is contained in:
parent
05b283f552
commit
a65f52d8de
Notes:
sideshowbarker
2024-07-18 03:10:42 +09:00
Author: https://github.com/timschumi
Commit: a65f52d8de
Pull-request: https://github.com/SerenityOS/serenity/pull/10298
Reviewed-by: https://github.com/bgianfo ✅
2 changed files with 7 additions and 0 deletions
|
@ -417,4 +417,10 @@ wchar_t* wmemmove(wchar_t* dest, const wchar_t* src, size_t n)
|
||||||
|
|
||||||
return dest;
|
return dest;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned long wcstoul(const wchar_t*, wchar_t**, int)
|
||||||
|
{
|
||||||
|
dbgln("TODO: Implement wcstoul()");
|
||||||
|
TODO();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,5 +47,6 @@ wchar_t* wmemchr(const wchar_t*, wchar_t, size_t);
|
||||||
wchar_t* wmemcpy(wchar_t*, const wchar_t*, size_t);
|
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);
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue