5 #include "aliases_parse.h"
16 [^:,#[:space:][:cntrl:]]+ {yylval.ident = strdup(yytext); return T_IDENT;}
17 ^([[:blank:]]*(#.*)?\n)+ ;/* ignore empty lines */
18 [:,\n] return yytext[0];
19 (\n?[[:blank:]]+|#.*)+ ;/* ignore whitespace and continuation */
20 \\\n ;/* ignore continuation. not allowed in comments */