diff options
Diffstat (limited to 'str_vec.h')
| -rw-r--r-- | str_vec.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/str_vec.h b/str_vec.h new file mode 100644 index 0000000..f361b39 --- /dev/null +++ b/str_vec.h @@ -0,0 +1,15 @@ +#ifndef STR_VEC_H +#define STR_VEC_H + +#include <stddef.h> + +struct str_vec { + char **data; + size_t len; +}; + +void str_vec_init(struct str_vec *vec); +void str_vec_push(struct str_vec *vec, const char *new_str); +void str_vec_free(struct str_vec *vec); + +#endif //STR_VEC_H |