From 51abdf014511f00f205333d033167a68d3eb7298 Mon Sep 17 00:00:00 2001 From: A404M Date: Sat, 22 Feb 2025 02:09:21 +0330 Subject: some clean up --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 8e8bf3f..58e92bf 100644 --- a/src/main.c +++ b/src/main.c @@ -6,7 +6,7 @@ #include #include -static int compileRun(const char *filePath, const char *outFilePath, +int compileRun(const char *filePath, const char *outFilePath, bool print) { char *code = readWholeFile(filePath); @@ -93,7 +93,7 @@ int runWithoutRead(char *code, bool shouldPrint) { return ret; } -static int run(const char *filePath, bool shouldPrint) { +int run(const char *filePath, bool shouldPrint) { char *code = readWholeFile(filePath); if (code == NULL) { -- cgit v1.2.3