mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09: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();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -61,5 +61,6 @@ int wcwidth(wchar_t);
|
|||
size_t wcsrtombs(char*, const wchar_t**, size_t, mbstate_t*);
|
||||
size_t mbsrtowcs(wchar_t*, const char**, size_t, mbstate_t*);
|
||||
int wmemcmp(const wchar_t*, const wchar_t*, size_t);
|
||||
size_t wcsnrtombs(char*, const wchar_t**, size_t, size_t, mbstate_t*);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue