working on csv data, parser works but needs more testing, might add bool to ParserData_DestroyFn callback for clearing

This commit is contained in:
herbglitch 2024-12-04 02:43:58 -07:00
parent 4c3d357cb9
commit ca6a9c118f
13 changed files with 384 additions and 279 deletions

View file

@ -64,6 +64,8 @@ set(ARCHEUS_STD_SOURCES
src/std/io.c
src/std/lexer.c
src/std/parser.c
src/std/parser/csv.c
src/std/parser/helpers.c
src/std/parser/parserlang.c
src/std/queue.c
src/std/stack.c
@ -131,6 +133,8 @@ if(ARCHEUS_STD_TESTS)
#tests/std/vector.c
#tests/std/lexer.c
tests/std/parser.c
tests/std/parser/csv.c
tests/std/parser/parserlang.c
${ARCHEUS_STD_SOURCES}
)