diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-01-03 01:01:11 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-01-03 01:02:25 +0100 |
| commit | e3eb9612af28762c4efdfcdf7cd493e24335d0f4 (patch) | |
| tree | 8e71819c5dd5e78593917b58a28eef00cb3643fa /libpsx/include | |
| parent | cbd6cab28b6b3d03e9625e9d429f8acaa34aa8a5 (diff) | |
| download | psxsdk-e3eb9612af28762c4efdfcdf7cd493e24335d0f4.tar.gz | |
Add implementation for strtok_r
Diffstat (limited to 'libpsx/include')
| -rw-r--r-- | libpsx/include/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpsx/include/string.h b/libpsx/include/string.h index 2c232fa..a5dd114 100644 --- a/libpsx/include/string.h +++ b/libpsx/include/string.h @@ -37,6 +37,7 @@ int strspn(const char *s , const char *charset); int strcspn(const char *s , const char *charset); char *strsep(char **stringp, const char *delim); char *strtok(char *str, const char *sep); +char* strtok_r(char *str, const char *delim, char **nextp); char *strstr(const char *big , const char *little); char *strcasestr(const char *big, const char *little); char *strlwr(char *string); |
