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

Kernel: Add strncmp()

This commit is contained in:
Sergey Bugaev 2019-08-10 18:01:33 +03:00 committed by Andreas Kling
parent feabe6ed31
commit 2396b2ed70
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);