summaryrefslogtreecommitdiff
path: root/libpsx/include
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-03 01:01:11 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-03 01:02:25 +0100
commite3eb9612af28762c4efdfcdf7cd493e24335d0f4 (patch)
tree8e71819c5dd5e78593917b58a28eef00cb3643fa /libpsx/include
parentcbd6cab28b6b3d03e9625e9d429f8acaa34aa8a5 (diff)
downloadpsxsdk-e3eb9612af28762c4efdfcdf7cd493e24335d0f4.tar.gz
Add implementation for strtok_r
Diffstat (limited to 'libpsx/include')
-rw-r--r--libpsx/include/string.h1
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);