#ifndef TSV_H #define TSV_H #include typedef struct { char *source; unsigned int i; char c; } tsv_t; tsv_t *init_tsv(char *source); string_t *next_tsv(tsv_t *tsv); #endif