mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:07:46 +00:00
LibC: Stub out wcstod
This commit is contained in:
parent
e0548692ac
commit
893d9e8741
2 changed files with 7 additions and 0 deletions
|
@ -435,4 +435,10 @@ float wcstof(const wchar_t*, wchar_t**)
|
||||||
dbgln("TODO: Implement wcstof()");
|
dbgln("TODO: Implement wcstof()");
|
||||||
TODO();
|
TODO();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double wcstod(const wchar_t*, wchar_t**)
|
||||||
|
{
|
||||||
|
dbgln("TODO: Implement wcstod()");
|
||||||
|
TODO();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,5 +50,6 @@ 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);
|
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**);
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue