2 /* $DragonFly: src/libexec/dma/aliases_scan.l,v 1.2 2008/02/03 11:06:17 matthias Exp $ */
5 #include "aliases_parse.h"
15 [^:,#[:space:][:cntrl:]]+ {yylval.ident = strdup(yytext); return T_IDENT;}
16 [:,\n] return yytext[0];
17 ^([[:blank:]]*(#.*)?\n)+ ;/* ignore empty lines */
18 (\n?[[:blank:]]+|#.*)+ ;/* ignore whitespace and continuation */
19 \\\n ;/* ignore continuation. not allowed in comments */