summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-08-03 00:46:21 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-08-03 00:46:21 +0500
commit56f152cf57e0bd3491be74195905b863519d9fca (patch)
tree671022de4608efbeb7efa7278d9404e8ae9b5303 /src/main.c
parentd1a1ebd54cabc6646f20f6b1b341751a2bf3c2ec (diff)
memory leak issues + qol stull
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/main.c b/src/main.c
index 9ccb20e..1366f7b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -6,19 +6,7 @@
int main(void) {
Puzzle *puzzle = ReadPuzzleFromFile("puzzles/test.pz");
-
- // printf("Puzzle name: %s\n", puzzle->Name);
- // printf("Puzzle description: %s\n", puzzle->Description);
- // printf("Puzzle code: %s\n", puzzle->InitialCode);
- // printf("Puzzle TestC: %zu\n", puzzle->TestC);
-
- // for (int i = 0; i < puzzle->TestC; i++) {
- // Test t = puzzle->Tests[i];
- // printf("\n");
- // printf("\tTest rec: %s\n", t.RecieverName);
- // printf("\tTest sig: %s\n", t.MainMethodSignature);
- // printf("\tTest argc: %zu\n", t.argc);
- // }
+ PrintPuzzle(puzzle);
if (!ReadConfig(DEFAULT_CONFIG_LOCATION)) {
return 1;