1 /* $NetBSD: lex.l,v 1.18 2010/06/13 04:14:57 tnozaki Exp $ */
6 * The Regents of the University of California. All rights reserved.
8 * This code is derived from software contributed to Berkeley by
9 * Paul Borman at Krystal Technologies.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #if HAVE_NBTOOL_CONFIG_H
37 #include "nbtool_config.h"
40 #include <sys/cdefs.h>
43 static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 6/6/93";
45 __RCSID("$NetBSD: lex.l,v 1.18 2010/06/13 04:14:57 tnozaki Exp $");
52 #include "citrus_namespace.h"
53 #include "citrus_bcs.h"
55 #include "runetype_file.h"
60 int yylex __P((void));
69 \'.\' { yylval.rune = (unsigned char)yytext[1];
72 '\\a' { yylval.rune = '\a';
74 '\\b' { yylval.rune = '\b';
76 '\\f' { yylval.rune = '\f';
78 '\\n' { yylval.rune = '\n';
80 '\\r' { yylval.rune = '\r';
82 '\\t' { yylval.rune = '\t';
84 '\\v' { yylval.rune = '\v';
87 0x{XDIGIT}+ { yylval.rune = _bcs_strtoul(yytext, 0, 16);
89 0{ODIGIT}+ { yylval.rune = _bcs_strtoul(yytext, 0, 8);
91 {DIGIT}+ { yylval.rune = _bcs_strtoul(yytext, 0, 10);
95 MAPLOWER { return(MAPLOWER); }
96 MAPUPPER { return(MAPUPPER); }
97 TODIGIT { return(DIGITMAP); }
98 INVALID { return(INVALID); }
100 ALPHA { yylval.i = _RUNETYPE_A|_RUNETYPE_R|_RUNETYPE_G;
102 CONTROL { yylval.i = _RUNETYPE_C;
104 DIGIT { yylval.i = _RUNETYPE_D|_RUNETYPE_R|_RUNETYPE_G;
106 GRAPH { yylval.i = _RUNETYPE_G|_RUNETYPE_R;
108 LOWER { yylval.i = _RUNETYPE_L|_RUNETYPE_R|_RUNETYPE_G;
110 PUNCT { yylval.i = _RUNETYPE_P|_RUNETYPE_R|_RUNETYPE_G;
112 SPACE { yylval.i = _RUNETYPE_S;
114 UPPER { yylval.i = _RUNETYPE_U|_RUNETYPE_R|_RUNETYPE_G;
116 XDIGIT { yylval.i = _RUNETYPE_X|_RUNETYPE_R|_RUNETYPE_G;
118 BLANK { yylval.i = _RUNETYPE_B;
120 PRINT { yylval.i = _RUNETYPE_R;
122 IDEOGRAM { yylval.i = _RUNETYPE_I|_RUNETYPE_R|_RUNETYPE_G;
124 SPECIAL { yylval.i = _RUNETYPE_T|_RUNETYPE_R|_RUNETYPE_G;
126 PHONOGRAM { yylval.i = _RUNETYPE_Q|_RUNETYPE_R|_RUNETYPE_G;
128 SWIDTH0 { yylval.i = _RUNETYPE_SW0; return(LIST); }
129 SWIDTH1 { yylval.i = _RUNETYPE_SW1; return(LIST); }
130 SWIDTH2 { yylval.i = _RUNETYPE_SW2; return(LIST); }
131 SWIDTH3 { yylval.i = _RUNETYPE_SW3; return(LIST); }
133 VARIABLE[\t ] { static char vbuf[1024];
135 while ((*v = input()) && *v != '\n')
145 CHARSET { return(CHARSET); }
147 ENCODING { return(ENCODING); }
149 \".*\" { char *e = yytext + 1;
151 while (*e && *e != '"')
156 \<|\(|\[ { return(LBRK); }
158 \>|\)|\] { return(RBRK); }
161 \.\.\. { return(THRU); }
171 if ((lc = input()) == 0)
173 } while((lc = input()) != '/');
177 . { printf("Lex is skipping '%s'\n", yytext); }