summaryrefslogtreecommitdiff
path: root/source/storage/csv_reader.c
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-03-05 22:42:55 +0000
committernasr <nsrddyn@gmail.com>2026-03-05 22:42:55 +0000
commitd8c52d6c408a172f1210c77df3e3a9629ea68dc6 (patch)
tree8125ad25c4b9a1a94d8a77b4daa19ca06479fc1d /source/storage/csv_reader.c
parentaa2bee82ac82ff47c6be84f2e6d39c690ec66a21 (diff)
feature(main): helper functions for lexing
refactor(main): helper script for testing to gitignore
Diffstat (limited to 'source/storage/csv_reader.c')
-rw-r--r--source/storage/csv_reader.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/storage/csv_reader.c b/source/storage/csv_reader.c
index a06e9c4..2fcbe04 100644
--- a/source/storage/csv_reader.c
+++ b/source/storage/csv_reader.c
@@ -1,15 +1,7 @@
1#define STD_TEST
2#if defined(STD_TEST)
3#include <stdio.h>
4#endif
5
6internal void 1internal void
7read_csv(string8 buffer) 2read_csv(string8 buffer)
8{ 3{
9#if defined(STD_TEST)
10 printf("\nsize:%lu\ndata %s\n", buffer.size, buffer.data); 4 printf("\nsize:%lu\ndata %s\n", buffer.size, buffer.data);
11#endif
12 5
13} 6}
14 7
15