summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpommicket <leonardomtenenbaum@gmail.com>2016-01-11 20:34:24 -0500
committerpommicket <leonardomtenenbaum@gmail.com>2016-01-11 20:34:24 -0500
commit293d96ed2f440040881709629ea998514378fc29 (patch)
treed78d7c4942357c2c03e913be78bb2801170d5d3f
parent88a5403bb6e10430a4e6351c4eca1e41f89ce74b (diff)
Deleted accidental backup
-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;
-}