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

LibC: Stub out wcsnrtombs

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

View file

@ -550,4 +550,10 @@ int wmemcmp(const wchar_t* s1, const wchar_t* s2, size_t n)
}
return 0;
}
size_t wcsnrtombs(char*, const wchar_t**, size_t, size_t, mbstate_t*)
{
dbgln("FIXME: Implement wcsnrtombs()");
TODO();
}
}