make: fix build error in curvetun due to empty env var
[netsniff-ng.git] / src / trafgen_lexer.l
bloba215908e4c9f5b812b80f16a63de9c265e460ac6
1 /*
2  * netsniff-ng - the packet sniffing beast
3  * By Daniel Borkmann <daniel@netsniff-ng.org>
4  * Copyright 2012 Daniel Borkmann <dborkma@tik.ee.ethz.ch>,
5  * Swiss federal institute of technology (ETH Zurich)
6  * Subject to the GPL, version 2.
7  */
9 /* lex-func-prefix: yy */
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <ctype.h>
18 #include "trafgen_parser.tab.h"
19 #include "xmalloc.h"
21 extern void yyerror(const char *);
25 %option align
26 %option nounput
27 %option noyywrap
28 %option noreject
29 %option 8bit
30 %option caseless
31 %option noinput
32 %option nodefault
34 number_oct      ([0][0-9]+)
35 number_hex      ([0][x][a-fA-F0-9]+)
36 number_bin      ([0][b][0-1]+)
37 number_dec      (([0])|([-+]?[1-9][0-9]*))
38 number_ascii    ([a-zA-Z])
42 "fill"          { return K_FILL; }
43 "rnd"           { return K_RND; }
44 "drnd"          { return K_DRND; }
45 "dinc"          { return K_DINC; }
46 "ddec"          { return K_DDEC; }
47 "seqinc"        { return K_SEQINC; }
48 "seqdec"        { return K_SEQDEC; }
50 "{"             { return '{'; }
51 "}"             { return '}'; }
52 "("             { return '('; }
53 ")"             { return ')'; }
54 "["             { return '['; }
55 "]"             { return ']'; }
56 ","             { return ','; }
57 "\n"            { yylineno++; return K_NEWL; }
58 [ \t\r]+        { return K_WHITE; }
60 "/*"([^\*]|\*[^/])*"*/" { return K_COMMENT; }
62 {number_hex}    { yylval.number = strtoul(yytext, NULL, 16);
63                   return number; }
65 {number_dec}    { yylval.number = strtol(yytext, NULL, 10);
66                   return number; }
68 {number_oct}    { yylval.number = strtol(yytext + 1, NULL, 8);
69                   return number; }
71 {number_bin}    { yylval.number = strtol(yytext + 2, NULL, 2);
72                   return number; }
74 {number_ascii}  { yylval.number = (uint8_t) (*yytext);
75                   return number; }
77 "'"."'"         { yylval.number = (uint8_t) (*(yytext + 1));
78                   return number; }
80 ";"[^\n]*       {/* NOP */}
81 "#"[^\n]*       {/* NOP */}
82 .               { printf("Unknown character '%s'", yytext);
83                   yyerror("lex Unknown character"); }