aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/c_lexer.flex
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-26 17:23:00 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-03-26 17:23:00 +0100
commite9657092063e786a52fefcfa4c528bac07472908 (patch)
tree01ac8abdc1ad5af82b0e48f163cd1e2b7cadced0 /c_compiler/src/c_lexer.flex
parentdec9dc403e540ef4424debfdd866c73ca93adc83 (diff)
downloadCompiler-e9657092063e786a52fefcfa4c528bac07472908.tar.gz
Compiler-e9657092063e786a52fefcfa4c528bac07472908.zip
working printf and added ellipsis
Diffstat (limited to 'c_compiler/src/c_lexer.flex')
-rw-r--r--c_compiler/src/c_lexer.flex1
1 files changed, 1 insertions, 0 deletions
diff --git a/c_compiler/src/c_lexer.flex b/c_compiler/src/c_lexer.flex
index 7ed46ae..8dcef35 100644
--- a/c_compiler/src/c_lexer.flex
+++ b/c_compiler/src/c_lexer.flex
@@ -54,6 +54,7 @@ ALL .
(default) { return T_DEFAULT; }
(switch) { return T_SWITCH; }
+[.][.][.] { return T_ELLIPSIS; }
[;] { return T_SC; }
[,] { return T_CMA; }
[(] { return T_LRB; }