1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

LibC: Add strtok_r() and make strtok() a wrapper around it

This commit is contained in:
Andreas Kling 2019-11-10 16:24:52 +01:00
parent 72fae05c07
commit 5951c7ca05
2 changed files with 19 additions and 14 deletions

View file

@ -31,6 +31,7 @@ size_t strcspn(const char*, const char* reject);
char* strerror(int errnum);
char* strsignal(int signum);
char* strpbrk(const char*, const char* accept);
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);