From 1fd608288ee47c2c560817f12f14b21069fed2f6 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sat, 28 Dec 2024 16:47:43 -0800 Subject: makefile and directory structure change completely to build client and server --- include/tsv.h | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 include/tsv.h (limited to 'include/tsv.h') 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 - -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 -- cgit