mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-09 11:06:10 +00:00
LibC: Stub out swprintf
This commit is contained in:
parent
e82dc7c77a
commit
c3b14588ec
Notes:
sideshowbarker
2024-07-18 03:10:23 +09:00
Author: https://github.com/timschumi
Commit: c3b14588ec
Pull-request: https://github.com/SerenityOS/serenity/pull/10298
Reviewed-by: https://github.com/bgianfo ✅
2 changed files with 7 additions and 0 deletions
|
@ -447,4 +447,10 @@ long double wcstold(const wchar_t*, wchar_t**)
|
||||||
dbgln("TODO: Implement wcstold()");
|
dbgln("TODO: Implement wcstold()");
|
||||||
TODO();
|
TODO();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int swprintf(wchar_t*, size_t, const wchar_t*, ...)
|
||||||
|
{
|
||||||
|
dbgln("TODO: Implement swprintf()");
|
||||||
|
TODO();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,5 +52,6 @@ unsigned long long wcstoull(const wchar_t*, wchar_t**, int);
|
||||||
float wcstof(const wchar_t*, wchar_t**);
|
float wcstof(const wchar_t*, wchar_t**);
|
||||||
double wcstod(const wchar_t*, wchar_t**);
|
double wcstod(const wchar_t*, wchar_t**);
|
||||||
long double wcstold(const wchar_t*, wchar_t**);
|
long double wcstold(const wchar_t*, wchar_t**);
|
||||||
|
int swprintf(wchar_t*, size_t, const wchar_t*, ...);
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue