aboutsummaryrefslogtreecommitdiff
path: root/include/tsv.h
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2024-12-28 16:47:43 -0800
committerPreston Pan <ret2pop@gmail.com>2024-12-28 16:47:43 -0800
commit1fd608288ee47c2c560817f12f14b21069fed2f6 (patch)
treee6460b92dba5bb0d089c8c2a4e794e3504098359 /include/tsv.h
parent63f11aaec8d21844a07fd27003a992c102a3a297 (diff)
makefile and directory structure change completely to build client and server
Diffstat (limited to 'include/tsv.h')
-rw-r--r--include/tsv.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/tsv.h b/include/tsv.h
deleted file mode 100644
index 5f6a9f6..0000000
--- a/include/tsv.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#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