mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:57:44 +00:00
LibC: Implement strsep()
This commit is contained in:
parent
78fa430ca1
commit
471b798eb0
2 changed files with 18 additions and 0 deletions
|
@ -59,5 +59,6 @@ char* strtok_r(char* str, const char* delim, char** saved_str);
|
|||
char* strtok(char* str, const char* delim);
|
||||
int strcoll(const char* s1, const char* s2);
|
||||
size_t strxfrm(char* dest, const char* src, size_t n);
|
||||
char* strsep(char** str, char const* delim);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue