summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code/parser/preprocessor.c
diff options
context:
space:
mode:
authorstandenboy <standenboy@seacrossedlovers.xyz>2024-05-06 09:32:48 +0100
committerstandenboy <standenboy@seacrossedlovers.xyz>2024-05-06 09:32:48 +0100
commit319e7ea0a724cd97041c1aaf1281c4ca6aa688d1 (patch)
tree7411f4636ce9ce9733760666f3311a17b6e4d17c /comp/lucas-standen-NEA/code/parser/preprocessor.c
parent0ca35b27de52a5d3acf5f2eb877a440c1103e928 (diff)
added a load of stuff, and fixed a git conflict
Diffstat (limited to 'comp/lucas-standen-NEA/code/parser/preprocessor.c')
-rw-r--r--comp/lucas-standen-NEA/code/parser/preprocessor.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/comp/lucas-standen-NEA/code/parser/preprocessor.c b/comp/lucas-standen-NEA/code/parser/preprocessor.c
deleted file mode 100644
index 92c6127..0000000
--- a/comp/lucas-standen-NEA/code/parser/preprocessor.c
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <stdbool.h>
-#include <string.h>
-
-#include "readfile.h"
-
-char *preprocessor(int argc, char **argv){
- char *buf = readfile(argv[1]);
- if (buf == NULL)
- return NULL;
-
- int i = 0;
-
- while (buf[i] != '\0'){
- if (buf[i] == '\n'){
- buf[i] = ' ';
- }
- if (buf[i] == '\t'){
- buf[i] = ' ';
- }
- i++;
- }
-
- return buf;
-}