summaryrefslogtreecommitdiff
path: root/util/epist/epist.l
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-14 00:13:20 +0000
committerDana Jansens <danakj@orodu.net>2003-01-14 00:13:20 +0000
commit0afb43164484dcac4773ad778c032687da6b01aa (patch)
treefa7e17844a338d346d74c8f06034692a527fc4fb /util/epist/epist.l
parentb683a4e0efe470ab38b75a767b4ea2abf004626a (diff)
rm the util directory
Diffstat (limited to 'util/epist/epist.l')
-rw-r--r--util/epist/epist.l53
1 files changed, 0 insertions, 53 deletions
diff --git a/util/epist/epist.l b/util/epist/epist.l
deleted file mode 100644
index 6c7e08a5..00000000
--- a/util/epist/epist.l
+++ /dev/null
@@ -1,53 +0,0 @@
-%{
-#ifdef HAVE_CONFIG_H
-# include "../../config.h"
-#endif // HAVE_CONFIG_H
-
-#include <stdio.h>
-#include <string.h>
-#include "yacc_parser.hh"
-
-extern YYSTYPE yylval;
-
-%}
-
-%option yylineno
-
-%%
-
-\{ return OBRACE;
-\} return EBRACE;
-; return SEMICOLON;
-- return DASH;
-Options |
-options return OPTIONS;
-Mod1 |
-mod1 |
-Mod2 |
-mod2 |
-Mod3 |
-mod3 |
-Mod4 |
-mod4 |
-Mod5 |
-mod5 |
-Control |
-control |
-shift |
-Shift yylval = (int) strdup(yytext); return BINDING;
-on |
-On |
-true |
-True yylval = (int) strdup(yytext); return TRUE;
-Off |
-off |
-false |
-False yylval = (int) strdup(yytext); return FALSE;
-[0-9]+ yylval = (int) strdup(yytext); return NUMBER;
-\".+\" yylval = (int) strdup(yytext); return QUOTES;
-[a-zA-Z_0-9]+ yylval = (int) strdup(yytext); return WORD;
-#.+\n /* ignore */
-\n /* ignore */
-[ \t]+ /* */
-%%
-