diff options
Diffstat (limited to 'src/string_vec.h')
-rw-r--r-- | src/string_vec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/string_vec.h b/src/string_vec.h index a5f00d5..0537873 100644 --- a/src/string_vec.h +++ b/src/string_vec.h @@ -2,6 +2,7 @@ #define STRING_VEC_H #include <stddef.h> +#include <stdio.h> struct string_vec { size_t count; @@ -29,4 +30,7 @@ struct string_vec string_vec_filter( const struct string_vec *restrict vec, const char *restrict substr); +struct string_vec string_vec_load(FILE *file); +void string_vec_save(struct string_vec *restrict vec, FILE *restrict file); + #endif /* STRING_VEC_H */ |