diff options
Diffstat (limited to 'common.c')
-rw-r--r-- | common.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -59,6 +59,13 @@ BLOCK_END static void +transform_str (char *s, int (*tolower) (int c)) +{ + for (; *s; s++) + *s = tolower (*s); +} + +static void split_str (const char *s, char delimiter, struct str_vector *out) { const char *begin = s, *end; |