summaryrefslogtreecommitdiff
path: root/source/main.c~
diff options
context:
space:
mode:
Diffstat (limited to 'source/main.c~')
-rw-r--r--source/main.c~24
1 files changed, 0 insertions, 24 deletions
diff --git a/source/main.c~ b/source/main.c~
deleted file mode 100644
index 6d75950..0000000
--- a/source/main.c~
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include "ook2bf.c"
-#include "bfcompiler.c"
-
-int main(int argc, char** argv)
-{
- if (argc < 2)
- {
- fprintf(stderr, "Error: Usage: %s <file> <output_file>\n", argv[0]);
- return 0;
- }
-
- char* bf;
-
-
- bf = ook2bf(argv[1]);
- compilebf(bf);
-
-
-
- return 0;
-}