mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:57:45 +00:00
Kernel: Add strncmp()
This commit is contained in:
parent
feabe6ed31
commit
2396b2ed70
2 changed files with 9 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue