mirror of
https://github.com/RGBCube/serenity
synced 2025-07-02 23:02:06 +00:00
Kernel: Remove strncpy() and strrchr()
These are not called anywhere in the kernel anyway.
This commit is contained in:
parent
ee912e023c
commit
1e4c43bbd0
2 changed files with 0 additions and 23 deletions
|
@ -43,7 +43,6 @@ void memset_user(void*, int, size_t);
|
|||
|
||||
void* memcpy(void*, const void*, size_t);
|
||||
char* strcpy(char*, const char*);
|
||||
char* strncpy(char*, const char*, size_t);
|
||||
int strncmp(const char* s1, const char* s2, size_t n);
|
||||
char* strstr(const char* haystack, const char* needle);
|
||||
int strcmp(char const*, const char*);
|
||||
|
@ -51,7 +50,6 @@ size_t strlen(const char*);
|
|||
size_t strnlen(const char*, size_t);
|
||||
void* memset(void*, int, size_t);
|
||||
int memcmp(const void*, const void*, size_t);
|
||||
char* strrchr(const char* str, int ch);
|
||||
void* memmove(void* dest, const void* src, size_t n);
|
||||
const void* memmem(const void* haystack, size_t, const void* needle, size_t);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue