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

LibC: Implement str{n}casecmp

This commit is contained in:
Robin Burchell 2019-05-16 09:27:42 +02:00 committed by Andreas Kling
parent 2f4e7edee5
commit f0f5dd6cef
2 changed files with 32 additions and 0 deletions

View file

@ -8,6 +8,8 @@ __BEGIN_DECLS
size_t strlen(const char*);
int strcmp(const char*, const char*);
int strncmp(const char*, const char*, size_t);
int strcasecmp(const char*, const char*);
int strncasecmp(const char*, const char*, size_t);
int memcmp(const void*, const void*, size_t);
void* memcpy(void*, const void*, size_t);
void* memmove(void*, const void*, size_t);