mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 12:32:21 +00:00
LibC: Add strtok_r() and make strtok() a wrapper around it
This commit is contained in:
parent
72fae05c07
commit
5951c7ca05
Notes:
sideshowbarker
2024-07-19 11:16:49 +09:00
Author: https://github.com/awesomekling
Commit: 5951c7ca05
2 changed files with 19 additions and 14 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue