summaryrefslogtreecommitdiff
path: root/source/storage/csv_reader.c
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-03-04 22:20:11 +0000
committernasr <nsrddyn@gmail.com>2026-03-04 22:20:11 +0000
commitaa2bee82ac82ff47c6be84f2e6d39c690ec66a21 (patch)
tree2631c96f888503e1558dc935f845974272c825d7 /source/storage/csv_reader.c
parent111fde401ad32ceff815f0a5ea3ace650cce60b6 (diff)
feature(main): ryan fleur nil nodes
will add the source to the sources.txt in the future
Diffstat (limited to 'source/storage/csv_reader.c')
-rw-r--r--source/storage/csv_reader.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/storage/csv_reader.c b/source/storage/csv_reader.c
index 6023a3a..a06e9c4 100644
--- a/source/storage/csv_reader.c
+++ b/source/storage/csv_reader.c
@@ -1,9 +1,15 @@
1#if 1 1#define STD_TEST
2#if defined(STD_TEST)
2#include <stdio.h> 3#include <stdio.h>
3#endif 4#endif
4 5
5internal void 6internal void
6read_csv(string8 buffer) 7read_csv(string8 buffer)
7{ 8{
9#if defined(STD_TEST)
8 printf("\nsize:%lu\ndata %s\n", buffer.size, buffer.data); 10 printf("\nsize:%lu\ndata %s\n", buffer.size, buffer.data);
11#endif
12
9} 13}
14
15