Implemented strtok()

This commit is contained in:
Max Wash
2021-02-19 13:54:35 +00:00
parent 2afef81c45
commit 2c197ead3e
2 changed files with 65 additions and 0 deletions

View File

@@ -23,6 +23,9 @@ extern char *strrchr(const char *s, int c);
extern char *strdup(const char *s);
extern char *strtok(char *s, const char *delim);
extern char *strtok_r(char *s, const char *delim, char **sp);
#if defined(__cplusplus)
} /* extern "C" */
#endif