Kernel: Add strncmp()

This commit is contained in:
Sergey Bugaev 2019-08-10 18:01:33 +03:00 committed by Andreas Kling
commit 2396b2ed70
Notes: sideshowbarker 2024-07-19 12:45:20 +09:00
2 changed files with 9 additions and 0 deletions

View file

@ -11,6 +11,7 @@ char* strcpy(char*, const char*);
char* strncpy(char*, const char*, size_t);
int strcmp(char const*, const char*);
size_t strlen(const char*);
size_t strnlen(const char*, size_t);
void* memset(void*, int, size_t);
char* strdup(const char*);
int memcmp(const void*, const void*, size_t);