1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:07:36 +00:00

LibC: Move bzero() and bcopy() per Dr. POSIX

This commit is contained in:
Andreas Kling 2021-01-09 19:54:51 +01:00
parent 9766f61f7b
commit b4918bbe2f
6 changed files with 15 additions and 12 deletions

View file

@ -33,5 +33,7 @@ __BEGIN_DECLS
int strcasecmp(const char*, const char*);
int strncasecmp(const char*, const char*, size_t);
void bzero(void*, size_t);
void bcopy(const void*, void*, size_t);
__END_DECLS