aboutsummaryrefslogtreecommitdiff
path: root/include/tsv.h
blob: 5f6a9f60742797819646b8cf496aa1900052004e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TSV_H
#define TSV_H

#include <better_string.h>

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