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 --- server/tsv.c | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 server/tsv.c (limited to 'server/tsv.c') diff --git a/server/tsv.c b/server/tsv.c deleted file mode 100644 index 9b1c2be..0000000 --- a/server/tsv.c +++ /dev/null @@ -1,32 +0,0 @@ -#include -#include - -#include -#include -#include - -tsv_t *init_tsv(char *source) { - tsv_t *tsv = safe_calloc(1, sizeof(tsv_t *)); - tsv->source = source; - tsv->i = 0; - tsv->c = tsv->source[tsv->i]; - return tsv; -} - -void tsv_move(tsv_t *tsv) { - if (tsv->c != '\0') { - tsv->i++; - tsv->c = tsv->source[tsv->i]; - } -} - -string_t *tsv_next(tsv_t *tsv) { - string_t *s = init_string(NULL); - bool escape = false; - while (tsv->c != '\t' && !escape) { - if (tsv->c == '\0') break; - string_push(s, tsv->c); - tsv_move(tsv); - } - return s; -} -- cgit