1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:57:44 +00:00

LibC: Implement strsep()

This commit is contained in:
Linus Groh 2022-01-10 21:44:44 +01:00
parent 78fa430ca1
commit 471b798eb0
2 changed files with 18 additions and 0 deletions

View file

@ -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