summaryrefslogtreecommitdiff
path: root/tools/d2c/format/tokens.l
diff options
context:
space:
mode:
Diffstat (limited to 'tools/d2c/format/tokens.l')
-rw-r--r--tools/d2c/format/tokens.l26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/d2c/format/tokens.l b/tools/d2c/format/tokens.l
new file mode 100644
index 0000000..12ca7f0
--- /dev/null
+++ b/tools/d2c/format/tokens.l
@@ -0,0 +1,26 @@
+
+%top {
+
+#include "grammar.h"
+
+}
+
+
+%option noyywrap
+%option nounput
+%option noinput
+%option yylineno
+%option noyy_top_state
+
+%x bsize
+
+
+%%
+
+
+" " { }
+
+[A-Za-z0-9_]* { yylvalp->string = strdup(yytext); return OPS_TYPE; }
+
+
+%%