ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

commit 9d9d7dbc2e4b51cf925a78b062eb43ceab4bad2a
parent f53ba79759fbe2d635fda36ef3d18b46ac956798
Author: citbl <citbl@citbl.org>
Date:   Fri, 10 Oct 2025 21:16:07 +1000

refac

Diffstat:
Mmakefile | 2+-
Rfile.h -> src/file.h | 0
Rgen.h -> src/gen.h | 0
Rgen/gen.c -> src/gen/gen.c | 0
Rhmap.c -> src/hmap.c | 0
Rhmap.h -> src/hmap.h | 0
Rhmap_test.c -> src/hmap_test.c | 0
Rhmap_test.h -> src/hmap_test.h | 0
Rlexer.c -> src/lexer.c | 0
Rlexer.h -> src/lexer.h | 0
Rmain.c -> src/main.c | 0
Rparser.h -> src/parser.h | 0
Rparser/ast.c -> src/parser/ast.c | 0
Rparser/decl.c -> src/parser/decl.c | 0
Rparser/expr.c -> src/parser/expr.c | 0
Rparser/parser.c -> src/parser/parser.c | 0
Rparser/parser_utils.c -> src/parser/parser_utils.c | 0
Rparser/stmt.c -> src/parser/stmt.c | 0
Rsem.c -> src/sem.c | 0
Rsem.h -> src/sem.h | 0
Rtypes.h -> src/types.h | 0
Rutils.c -> src/utils.c | 0
Rutils.h -> src/utils.h | 0
23 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/makefile b/makefile @@ -17,7 +17,7 @@ else LIB := -I${LIBGCCJIT_PREFIX}/include -L${LIBGCCJIT_PREFIX} -lgccjit endif -SRC = *.c */*.c +SRC = */*/*.c */*.c BIN = oxc STD = -std=c2x diff --git a/file.h b/src/file.h diff --git a/gen.h b/src/gen.h diff --git a/gen/gen.c b/src/gen/gen.c diff --git a/hmap.c b/src/hmap.c diff --git a/hmap.h b/src/hmap.h diff --git a/hmap_test.c b/src/hmap_test.c diff --git a/hmap_test.h b/src/hmap_test.h diff --git a/lexer.c b/src/lexer.c diff --git a/lexer.h b/src/lexer.h diff --git a/main.c b/src/main.c diff --git a/parser.h b/src/parser.h diff --git a/parser/ast.c b/src/parser/ast.c diff --git a/parser/decl.c b/src/parser/decl.c diff --git a/parser/expr.c b/src/parser/expr.c diff --git a/parser/parser.c b/src/parser/parser.c diff --git a/parser/parser_utils.c b/src/parser/parser_utils.c diff --git a/parser/stmt.c b/src/parser/stmt.c diff --git a/sem.c b/src/sem.c diff --git a/sem.h b/src/sem.h diff --git a/types.h b/src/types.h diff --git a/utils.c b/src/utils.c diff --git a/utils.h b/src/utils.h