diff options
Diffstat (limited to 'src/lib/libc/include/string.h')
-rw-r--r-- | src/lib/libc/include/string.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/libc/include/string.h b/src/lib/libc/include/string.h index 360af12..d9fdfe3 100644 --- a/src/lib/libc/include/string.h +++ b/src/lib/libc/include/string.h @@ -51,6 +51,14 @@ size_t strlen(const char *s); int strcmp(const char *s1, const char *s2); /* + * Tokenize a string + * + * @s: Strign to tokenize + * @delim: Delimeter + */ +char *strtok(char *s, const char *delim); + +/* * Get the length of a string with a maximum * length * |