1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:37:47 +00:00

LibC: Implement wmemmove

This commit is contained in:
Tim Schumacher 2021-09-22 10:24:12 +00:00 committed by Brian Gianforcaro
parent fa1208edfd
commit 05b283f552
3 changed files with 42 additions and 0 deletions

View file

@ -46,5 +46,6 @@ wchar_t* wcsstr(const wchar_t*, const wchar_t*);
wchar_t* wmemchr(const wchar_t*, wchar_t, size_t);
wchar_t* wmemcpy(wchar_t*, const wchar_t*, size_t);
wchar_t* wmemset(wchar_t*, wchar_t, size_t);
wchar_t* wmemmove(wchar_t*, const wchar_t*, size_t);
__END_DECLS