2 /* arlex.l - Strange script language lexer */
4 /* Copyright 1992, 1997, 2000, 2002 Free Software Foundation, Inc.
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 /* Contributed by Steve Chamberlain
27 #define DONTDECLARE_MALLOC
29 #include "libiberty.h"
34 extern int yylex PARAMS ((void));
44 "ADDLIB" { return ADDLIB; }
45 "ADDMOD" { return ADDMOD; }
46 "CLEAR" { return CLEAR; }
47 "CREATE" { return CREATE; }
48 "DELETE" { return DELETE; }
49 "DIRECTORY" { return DIRECTORY; }
51 "EXTRACT" { return EXTRACT; }
52 "FULLDIR" { return FULLDIR; }
53 "HELP" { return HELP; }
54 "LIST" { return LIST; }
55 "OPEN" { return OPEN; }
56 "REPLACE" { return REPLACE; }
57 "VERBOSE" { return VERBOSE; }
58 "SAVE" { return SAVE; }
59 "addlib" { return ADDLIB; }
60 "addmod" { return ADDMOD; }
61 "clear" { return CLEAR; }
62 "create" { return CREATE; }
63 "delete" { return DELETE; }
64 "directory" { return DIRECTORY; }
66 "extract" { return EXTRACT; }
67 "fulldir" { return FULLDIR; }
68 "help" { return HELP; }
69 "list" { return LIST; }
70 "open" { return OPEN; }
71 "replace" { return REPLACE; }
72 "verbose" { return VERBOSE; }
73 "save" { return SAVE; }
74 "+\n" { linenumber ++; }
78 [A-Za-z0-9/\\$:.\-\_]+ {
79 yylval.name = xstrdup (yytext);
85 "\n" { linenumber ++; return NEWLINE; }
89 /* Needed for lex, though not flex. */
90 int yywrap() { return 1; }