mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:27:45 +00:00
LibC: Implement strchrnul()
This commit is contained in:
parent
ba9313111f
commit
a52b3e8f2a
2 changed files with 10 additions and 0 deletions
|
@ -49,6 +49,7 @@ char* strndup(const char*, size_t);
|
|||
char* strcpy(char* dest, const char* src);
|
||||
char* strncpy(char* dest, const char* src, size_t);
|
||||
char* strchr(const char*, int c);
|
||||
char* strchrnul(const char*, int c);
|
||||
char* strstr(const char* haystack, const char* needle);
|
||||
char* strrchr(const char*, int c);
|
||||
char* strcat(char* dest, const char* src);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue