4 * The Regents of the University of California. All rights reserved.
6 * This code is derived from software contributed to Berkeley by
7 * Paul Borman at Krystal Technologies.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by the University of
20 * California, Berkeley and its contributors.
21 * 4. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 6/6/93";
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD: src/usr.bin/mklocale/lex.l,v 1.9 2005/02/26 21:47:54 ru Exp $");
62 \'.\' { yylval.rune = (unsigned char)yytext[1];
65 '\\a' { yylval.rune = '\a';
67 '\\b' { yylval.rune = '\b';
69 '\\f' { yylval.rune = '\f';
71 '\\n' { yylval.rune = '\n';
73 '\\r' { yylval.rune = '\r';
75 '\\t' { yylval.rune = '\t';
77 '\\v' { yylval.rune = '\v';
80 0x{XDIGIT}+ { yylval.rune = strtol(yytext, 0, 16);
82 0{ODIGIT}+ { yylval.rune = strtol(yytext, 0, 8);
84 {DIGIT}+ { yylval.rune = strtol(yytext, 0, 10);
88 MAPLOWER { return(MAPLOWER); }
89 MAPUPPER { return(MAPUPPER); }
90 TODIGIT { return(DIGITMAP); }
91 INVALID { return(INVALID); }
93 ALPHA { yylval.i = _CTYPE_A|_CTYPE_R|_CTYPE_G;
95 CONTROL { yylval.i = _CTYPE_C;
97 DIGIT { yylval.i = _CTYPE_D|_CTYPE_R|_CTYPE_G;
99 GRAPH { yylval.i = _CTYPE_G|_CTYPE_R;
101 LOWER { yylval.i = _CTYPE_L|_CTYPE_R|_CTYPE_G;
103 PUNCT { yylval.i = _CTYPE_P|_CTYPE_R|_CTYPE_G;
105 SPACE { yylval.i = _CTYPE_S;
107 UPPER { yylval.i = _CTYPE_U|_CTYPE_R|_CTYPE_G;
109 XDIGIT { yylval.i = _CTYPE_X|_CTYPE_R|_CTYPE_G;
111 BLANK { yylval.i = _CTYPE_B;
113 PRINT { yylval.i = _CTYPE_R;
115 IDEOGRAM { yylval.i = _CTYPE_I|_CTYPE_R|_CTYPE_G;
117 SPECIAL { yylval.i = _CTYPE_T|_CTYPE_R|_CTYPE_G;
119 PHONOGRAM { yylval.i = _CTYPE_Q|_CTYPE_R|_CTYPE_G;
121 SWIDTH0 { yylval.i = _CTYPE_SW0; return(LIST); }
122 SWIDTH1 { yylval.i = _CTYPE_SW1; return(LIST); }
123 SWIDTH2 { yylval.i = _CTYPE_SW2; return(LIST); }
124 SWIDTH3 { yylval.i = _CTYPE_SW3; return(LIST); }
126 VARIABLE[\t ] { static char vbuf[1024];
128 while ((*v = input()) && *v != '\n')
138 ENCODING { return(ENCODING); }
140 CHARCLASS { return(CHARCLASS); }
142 \".*\" { char *e = yytext + 1;
144 while (*e && *e != '"')
149 \<|\(|\[ { return(LBRK); }
151 \>|\)|\] { return(RBRK); }
154 \.\.\. { return(THRU); }
164 if ((lc = input()) == 0)
166 } while((lc = input()) != '/');
170 . { printf("Lex is skipping '%s'\n", yytext); }