Implement tokenisation

This commit is contained in:
2025-08-09 12:13:55 +01:00
parent 657f0922bb
commit 3e8a9d6789
10 changed files with 550 additions and 0 deletions

6
lib/CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
add_library(imp
memory_stream.c
token.c
)
target_include_directories(imp PUBLIC include)
configure_target(imp)