diff options
Diffstat (limited to 'str.h')
| -rw-r--r-- | str.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +// +// Created by jhunk on 3/21/26. +// + +#ifndef DO_STR_H +#define DO_STR_H + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + + +char** split(char *_sptr, const char* delim, size_t max, size_t *num); + +#endif //DO_STR_H |
