diff options
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common.c b/src/common.c index 8ec6646..f35493f 100644 --- a/src/common.c +++ b/src/common.c @@ -278,6 +278,13 @@ str_vector_free (struct str_vector *self) } static void +str_vector_reset (struct str_vector *self) +{ + str_vector_free (self); + str_vector_init (self); +} + +static void str_vector_add_owned (struct str_vector *self, char *s) { self->vector[self->len] = s; |