mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 12:17:45 +00:00
LibC: Implement wcslcpy
This commit is contained in:
parent
e6164d35fa
commit
13e6d9d71a
3 changed files with 38 additions and 0 deletions
|
@ -29,6 +29,7 @@ struct tm;
|
|||
size_t wcslen(const wchar_t*);
|
||||
wchar_t* wcscpy(wchar_t*, const wchar_t*);
|
||||
wchar_t* wcsncpy(wchar_t*, const wchar_t*, size_t);
|
||||
__attribute__((warn_unused_result)) size_t wcslcpy(wchar_t*, const wchar_t*, size_t);
|
||||
int wcscmp(const wchar_t*, const wchar_t*);
|
||||
int wcsncmp(const wchar_t*, const wchar_t*, size_t);
|
||||
wchar_t* wcschr(const wchar_t*, int);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue