#ifndef STRV_H #define STRV_H #include typedef struct { const char *s; size_t n; } strv_t; strv_t strv(const char *s); strv_t strv_head(strv_t ss, int chr, size_t *i); #endif