| 5 | const char *empty_strvec[] = { NULL }; |
| 6 | |
| 7 | void strvec_init(struct strvec *array) |
| 8 | { |
| 9 | struct strvec blank = STRVEC_INIT; |
| 10 | memcpy(array, &blank, sizeof(*array)); |
| 11 | } |
| 12 | |
| 13 | void strvec_push_nodup(struct strvec *array, char *value) |
| 14 | { |
no outgoing calls