1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:37:35 +00:00

LibC: Stub out wcstof

This commit is contained in:
Tim Schumacher 2021-09-22 12:26:01 +00:00 committed by Brian Gianforcaro
parent 783ddd261d
commit e0548692ac
2 changed files with 7 additions and 0 deletions

View file

@ -429,4 +429,10 @@ unsigned long long wcstoull(const wchar_t*, wchar_t**, int)
dbgln("TODO: Implement wcstoull()");
TODO();
}
float wcstof(const wchar_t*, wchar_t**)
{
dbgln("TODO: Implement wcstof()");
TODO();
}
}

View file

@ -49,5 +49,6 @@ wchar_t* wmemset(wchar_t*, 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 long wcstoull(const wchar_t*, wchar_t**, int);
float wcstof(const wchar_t*, wchar_t**);
__END_DECLS