31 lines
577 B
C
31 lines
577 B
C
#define _XOPEN_SOURCE 700
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "str_vec.h"
|
|
|
|
void str_vec_init(struct str_vec *vec) {
|
|
vec->data = NULL;
|
|
vec->len = 0;
|
|
}
|
|
|
|
void str_vec_push(struct str_vec *vec, const char *new_str) {
|
|
++vec->len;
|
|
vec->data = realloc(vec->data, vec->len * sizeof(char*));
|
|
vec->data[vec->len - 1] = strdup(new_str);
|
|
}
|
|
|
|
void str_vec_free(struct str_vec *vec) {
|
|
if (vec == NULL) {
|
|
return;
|
|
}
|
|
for (size_t i = 0; i < vec->len; ++i) {
|
|
if (vec->data[i] != NULL) {
|
|
free(vec->data[i]);
|
|
}
|
|
}
|
|
free(vec->data);
|
|
vec->data = NULL;
|
|
vec->len = 0;
|
|
}
|