aboutsummaryrefslogtreecommitdiff
path: root/include/tsv.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/tsv.h')
-rw-r--r--include/tsv.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/tsv.h b/include/tsv.h
new file mode 100644
index 0000000..5f6a9f6
--- /dev/null
+++ b/include/tsv.h
@@ -0,0 +1,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