LibC: Implement str{n}casecmp

This commit is contained in:
Robin Burchell 2019-05-16 09:27:42 +02:00 committed by Andreas Kling
commit f0f5dd6cef
Notes: sideshowbarker 2024-07-19 14:06:58 +09:00
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);