diff options
Diffstat (limited to 'src/string2.h')
-rw-r--r-- | src/string2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string2.h b/src/string2.h index 228cc8e..0ffa2b3 100644 --- a/src/string2.h +++ b/src/string2.h @@ -5,6 +5,8 @@ #include <string.h> +char **strsplit(char *str, char delim, int *size); + #define strstarts(str, prefix) (strncmp(str, prefix, strlen(prefix)) == 0) static int |