mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 14:19:48 +00:00
LibC: Stub out wcsnrtombs
This commit is contained in:
parent
57f0c12b9a
commit
54eee525e6
Notes:
sideshowbarker
2024-07-18 02:15:42 +09:00
Author: https://github.com/BertalanD
Commit: 54eee525e6
Pull-request: https://github.com/SerenityOS/serenity/pull/9378
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/itamar8910
Reviewed-by: https://github.com/linusg ✅
Reviewed-by: https://github.com/nico
Reviewed-by: https://github.com/timschumi
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