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:
parent
57f0c12b9a
commit
54eee525e6
2 changed files with 7 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue