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

LibC: Stub out mbsnrtowcs

This commit is contained in:
Daniel Bertalan 2021-10-16 09:54:18 +02:00 committed by Linus Groh
parent 54eee525e6
commit 763a69d46d
2 changed files with 7 additions and 0 deletions

View file

@ -556,4 +556,10 @@ size_t wcsnrtombs(char*, const wchar_t**, size_t, size_t, mbstate_t*)
dbgln("FIXME: Implement wcsnrtombs()");
TODO();
}
size_t mbsnrtowcs(wchar_t*, const char**, size_t, size_t, mbstate_t*)
{
dbgln("FIXME: Implement mbsnrtowcs()");
TODO();
}
}