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