aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/test/test_lex.c
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-02-07 19:02:06 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-02-07 19:02:06 +0000
commit49ff65e37739480fc843b81d3c27a3deb5f9f0bf (patch)
treea43ff33ee6ccc1af33bb0e37b36a40edec0af1f7 /c_parser/test/test_lex.c
parent934fc643b33e1af6c13e5658133c93a6a35b7cbd (diff)
downloadCompiler-49ff65e37739480fc843b81d3c27a3deb5f9f0bf.tar.gz
Compiler-49ff65e37739480fc843b81d3c27a3deb5f9f0bf.zip
Started parser but not working yet, finished makefile
Diffstat (limited to 'c_parser/test/test_lex.c')
-rw-r--r--c_parser/test/test_lex.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/c_parser/test/test_lex.c b/c_parser/test/test_lex.c
deleted file mode 100644
index 9db9054..0000000
--- a/c_parser/test/test_lex.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <stdlib.h>
-#include <stdio.h>
-#include <assert.h>
-#include <math.h>
-
-#define POTATO 5
-
-int main(int argc, char* argv[]) {
- char* h = "Hello World\"";
- int j = POTATO;
- int u = 2398uL;
- float rt = 23.238e-283;
- return 0;
-}