xref: /illumos-gate/usr/src/cmd/troff/suftab.c (revision 2a8bcb4efb45d99ac41c94a75c396b362c414f7f)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright 1989 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
28*7c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
29*7c478bd9Sstevel@tonic-gate 
30*7c478bd9Sstevel@tonic-gate /*
31*7c478bd9Sstevel@tonic-gate  * University Copyright- Copyright (c) 1982, 1986, 1988
32*7c478bd9Sstevel@tonic-gate  * The Regents of the University of California
33*7c478bd9Sstevel@tonic-gate  * All Rights Reserved
34*7c478bd9Sstevel@tonic-gate  *
35*7c478bd9Sstevel@tonic-gate  * University Acknowledgment- Portions of this document are derived from
36*7c478bd9Sstevel@tonic-gate  * software developed by the University of California, Berkeley, and its
37*7c478bd9Sstevel@tonic-gate  * contributors.
38*7c478bd9Sstevel@tonic-gate  */
39*7c478bd9Sstevel@tonic-gate 
40*7c478bd9Sstevel@tonic-gate /*
41*7c478bd9Sstevel@tonic-gate  * Suffix table
42*7c478bd9Sstevel@tonic-gate  */
43*7c478bd9Sstevel@tonic-gate 
44*7c478bd9Sstevel@tonic-gate static	unsigned char sufa[] = {
45*7c478bd9Sstevel@tonic-gate 	02,0200+'t',	/* -TA */
46*7c478bd9Sstevel@tonic-gate 	02,0200+'s',	/* -SA */
47*7c478bd9Sstevel@tonic-gate 	03,0200+'t','r',	/* -TRA */
48*7c478bd9Sstevel@tonic-gate 	03,0200+'d','r',	/* -DRA */
49*7c478bd9Sstevel@tonic-gate 	03,0200+'b','r',	/* -BRA */
50*7c478bd9Sstevel@tonic-gate 	02,0200+'p',	/* -PA */
51*7c478bd9Sstevel@tonic-gate 	02,0200+'n',	/* -NA */
52*7c478bd9Sstevel@tonic-gate 	02,0200+'m',	/* -MA */
53*7c478bd9Sstevel@tonic-gate 	03,0200+'p','l',	/* -PLA */
54*7c478bd9Sstevel@tonic-gate 	02,0200+'l',	/* -LA */
55*7c478bd9Sstevel@tonic-gate 	02,0200+'k',	/* -KA */
56*7c478bd9Sstevel@tonic-gate 	03,0200+'t','h',	/* -THA */
57*7c478bd9Sstevel@tonic-gate 	03,0200+'s','h',	/* -SHA */
58*7c478bd9Sstevel@tonic-gate 	02,0200+'g',	/* -GA */
59*7c478bd9Sstevel@tonic-gate 	02,0200+'d',	/* -DA */
60*7c478bd9Sstevel@tonic-gate 	02,0200+'c',	/* -CA */
61*7c478bd9Sstevel@tonic-gate 	02,0200+'b',	/* -BA */
62*7c478bd9Sstevel@tonic-gate 	00
63*7c478bd9Sstevel@tonic-gate };
64*7c478bd9Sstevel@tonic-gate 
65*7c478bd9Sstevel@tonic-gate static	unsigned char sufc[] = {
66*7c478bd9Sstevel@tonic-gate 	04,'e','t',0200+'i',	/* ET-IC */
67*7c478bd9Sstevel@tonic-gate 	07,'a','l',0200+'i','s',0200+'t','i',	/* AL-IS-TIC */
68*7c478bd9Sstevel@tonic-gate 	04,'s',0200+'t','i',	/* S-TIC */
69*7c478bd9Sstevel@tonic-gate 	04,'p',0200+'t','i',	/* P-TIC */
70*7c478bd9Sstevel@tonic-gate 	05,0200+'l','y','t',0200+'i',	/* -LYT-IC */
71*7c478bd9Sstevel@tonic-gate 	04,'o','t',0200+'i',	/* OT-IC */
72*7c478bd9Sstevel@tonic-gate 	05,'a','n',0200+'t','i',	/* AN-TIC */
73*7c478bd9Sstevel@tonic-gate 	04,'n',0200+'t','i',	/* N-TIC */
74*7c478bd9Sstevel@tonic-gate 	04,'c',0200+'t','i',	/* C-TIC */
75*7c478bd9Sstevel@tonic-gate 	04,'a','t',0200+'i',	/* AT-IC */
76*7c478bd9Sstevel@tonic-gate 	04,'h',0200+'n','i',	/* H-NIC */
77*7c478bd9Sstevel@tonic-gate 	03,'n',0200+'i',	/* N-IC */
78*7c478bd9Sstevel@tonic-gate 	03,'m',0200+'i',	/* M-IC */
79*7c478bd9Sstevel@tonic-gate 	04,'l',0200+'l','i',	/* L-LIC */
80*7c478bd9Sstevel@tonic-gate 	04,'b',0200+'l','i',	/* B-LIC */
81*7c478bd9Sstevel@tonic-gate 	04,0200+'c','l','i',	/* -CLIC */
82*7c478bd9Sstevel@tonic-gate 	03,'l',0200+'i',	/* L-IC */
83*7c478bd9Sstevel@tonic-gate 	03,'h',0200+'i',	/* H-IC */
84*7c478bd9Sstevel@tonic-gate 	03,'f',0200+'i',	/* F-IC */
85*7c478bd9Sstevel@tonic-gate 	03,'d',0200+'i',	/* D-IC */
86*7c478bd9Sstevel@tonic-gate 	03,0200+'b','i',	/* -BIC */
87*7c478bd9Sstevel@tonic-gate 	03,'a',0200+'i',	/* A-IC */
88*7c478bd9Sstevel@tonic-gate 	03,0200+'m','a',	/* -MAC */
89*7c478bd9Sstevel@tonic-gate 	03,'i',0200+'a',	/* I-AC */
90*7c478bd9Sstevel@tonic-gate 	00
91*7c478bd9Sstevel@tonic-gate };
92*7c478bd9Sstevel@tonic-gate 
93*7c478bd9Sstevel@tonic-gate static	unsigned char sufd[] = {
94*7c478bd9Sstevel@tonic-gate 	04,0200+'w','o','r',	/* -WORD */
95*7c478bd9Sstevel@tonic-gate 	04,0200+'l','o','r',	/* -LORD */
96*7c478bd9Sstevel@tonic-gate 	04,0200+'f','o','r',	/* -FORD */
97*7c478bd9Sstevel@tonic-gate 	04,0200+'y','a','r',	/* -YARD */
98*7c478bd9Sstevel@tonic-gate 	04,0200+'w','a','r',	/* -WARD */
99*7c478bd9Sstevel@tonic-gate 	05,0200+'g','u','a','r',	/* -GUARD */
100*7c478bd9Sstevel@tonic-gate 	04,0200+'t','a','r',	/* -TARD */
101*7c478bd9Sstevel@tonic-gate 	05,0200+'b','o','a','r',	/* -BOARD */
102*7c478bd9Sstevel@tonic-gate 	04,0200+'n','a','r',	/* -NARD */
103*7c478bd9Sstevel@tonic-gate 	05,0200+'l','i','a','r',	/* -LIARD */
104*7c478bd9Sstevel@tonic-gate 	04,0200+'i','a','r',	/* -IARD */
105*7c478bd9Sstevel@tonic-gate 	04,0200+'g','a','r',	/* -GARD */
106*7c478bd9Sstevel@tonic-gate 	04,0200+'b','a','r',	/* -BARD */
107*7c478bd9Sstevel@tonic-gate 	03,0200+'r','o',	/* -ROD */
108*7c478bd9Sstevel@tonic-gate 	04,0200+'w','o','o',	/* -WOOD */
109*7c478bd9Sstevel@tonic-gate 	04,0200+'h','o','o',	/* -HOOD */
110*7c478bd9Sstevel@tonic-gate 	04,0200+'m','o','n',	/* -MOND */
111*7c478bd9Sstevel@tonic-gate 	04,0200+'t','e','n',	/* -TEND */
112*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','a','n',	/* -STAND */
113*7c478bd9Sstevel@tonic-gate 	04,0200+'l','a','n',	/* -LAND */
114*7c478bd9Sstevel@tonic-gate 	04,0200+'h','a','n',	/* -HAND */
115*7c478bd9Sstevel@tonic-gate 	04,0200+'h','o','l',	/* -HOLD */
116*7c478bd9Sstevel@tonic-gate 	04,0200+'f','o','l',	/* -FOLD */
117*7c478bd9Sstevel@tonic-gate 	05,0200+'f','i','e','l',	/* -FIELD */
118*7c478bd9Sstevel@tonic-gate 	03,0200+'v','i',	/* -VID */
119*7c478bd9Sstevel@tonic-gate 	03,0200+'c','i',	/* -CID */
120*7c478bd9Sstevel@tonic-gate 	04,0200+'s','a','i',	/* -SAID */
121*7c478bd9Sstevel@tonic-gate 	04,0200+'m','a','i',	/* -MAID */
122*7c478bd9Sstevel@tonic-gate 	04,'t',0200+'t','e',	/* T-TED */
123*7c478bd9Sstevel@tonic-gate 	03,'t',0200+'e',	/* T-ED */
124*7c478bd9Sstevel@tonic-gate 	04,0200+'d','r','e',	/* -DRED */
125*7c478bd9Sstevel@tonic-gate 	04,0200+'c','r','e',	/* -CRED */
126*7c478bd9Sstevel@tonic-gate 	04,0200+'b','r','e',	/* -BRED */
127*7c478bd9Sstevel@tonic-gate 	05,'v',0200+'e','l','e',	/* V-ELED */
128*7c478bd9Sstevel@tonic-gate 	0100+04,'a','l',0200+'e',	/* AL/ED */
129*7c478bd9Sstevel@tonic-gate 	0140+03,0200+'e','e',	/* /EED */
130*7c478bd9Sstevel@tonic-gate 	040+05,'e','d',0200+'d','e',	/* ED-DED */
131*7c478bd9Sstevel@tonic-gate 	04,'d',0200+'d','e',	/* D-DED */
132*7c478bd9Sstevel@tonic-gate 	040+04,'e','d',0200+'e',	/* ED-ED */
133*7c478bd9Sstevel@tonic-gate 	03,'d',0200+'e',	/* D-ED */
134*7c478bd9Sstevel@tonic-gate 	05,0200+'d','u','c','e',	/* -DUCED */
135*7c478bd9Sstevel@tonic-gate 	0300+02,'e',	/* E/D */
136*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','e','a',	/* -STEAD */
137*7c478bd9Sstevel@tonic-gate 	04,0200+'h','e','a',	/* -HEAD */
138*7c478bd9Sstevel@tonic-gate 	00
139*7c478bd9Sstevel@tonic-gate };
140*7c478bd9Sstevel@tonic-gate 
141*7c478bd9Sstevel@tonic-gate static	unsigned char sufe[] = {
142*7c478bd9Sstevel@tonic-gate 	05,'a','r',0200+'i','z',	/* AR-IZE */
143*7c478bd9Sstevel@tonic-gate 	05,'a','n',0200+'i','z',	/* AN-IZE */
144*7c478bd9Sstevel@tonic-gate 	05,'a','l',0200+'i','z',	/* AL-IZE */
145*7c478bd9Sstevel@tonic-gate 	06,0200+'a','r','d',0200+'i','z',	/* -ARD-IZE */
146*7c478bd9Sstevel@tonic-gate 	05,0200+'s','e','l','v',	/* -SELVE */
147*7c478bd9Sstevel@tonic-gate 	05,0200+'k','n','i','v',	/* -KNIVE */
148*7c478bd9Sstevel@tonic-gate 	05,0200+'l','i','e','v',	/* -LIEVE */
149*7c478bd9Sstevel@tonic-gate 	0100+03,0200+'q','u',	/* /QUE */
150*7c478bd9Sstevel@tonic-gate 	07,'o','n',0200+'t','i','n',0200+'u',	/* ON-TIN-UE */
151*7c478bd9Sstevel@tonic-gate 	03,0200+'n','u',	/* -NUE */
152*7c478bd9Sstevel@tonic-gate 	03,0200+'d','u',	/* -DUE */
153*7c478bd9Sstevel@tonic-gate 	0300+02,'u',	/* U/E */
154*7c478bd9Sstevel@tonic-gate 	0300+05,'q','u','a','t',	/*  QUAT/E */
155*7c478bd9Sstevel@tonic-gate 	04,'u',0200+'a','t',	/* U-ATE */
156*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','a','t',	/* -STATE */
157*7c478bd9Sstevel@tonic-gate 	04,0200+'t','a','t',	/* -TATE */
158*7c478bd9Sstevel@tonic-gate 	06,0200+'t','o','r',0200+'a','t',	/* -TOR-ATE */
159*7c478bd9Sstevel@tonic-gate 	05,'e','n',0200+'a','t',	/* EN-ATE */
160*7c478bd9Sstevel@tonic-gate 	04,0200+'m','a','t',	/* -MATE */
161*7c478bd9Sstevel@tonic-gate 	05,0200+'h','o','u','s',	/* -HOUSE */
162*7c478bd9Sstevel@tonic-gate 	05,0200+'c','l','o','s',	/* -CLOSE */
163*7c478bd9Sstevel@tonic-gate 	04,'i',0200+'o','s',	/* I-OSE */
164*7c478bd9Sstevel@tonic-gate 	04,0200+'w','i','s',	/* -WISE */
165*7c478bd9Sstevel@tonic-gate 	05,'a','s',0200+'u','r',	/* AS-URE */
166*7c478bd9Sstevel@tonic-gate 	040+04,0200+'s','u','r',	/* -SURE */
167*7c478bd9Sstevel@tonic-gate 	06,0200+'f','i','g',0200+'u','r',	/* -FIG-URE */
168*7c478bd9Sstevel@tonic-gate 	040+03,0200+'t','r',	/* -TRE */
169*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','o','r',	/* -STORE */
170*7c478bd9Sstevel@tonic-gate 	04,0200+'f','o','r',	/* -FORE */
171*7c478bd9Sstevel@tonic-gate 	05,0200+'w','h','e','r',	/* -WHERE */
172*7c478bd9Sstevel@tonic-gate 	06,0200+'s','p','h','e','r',	/* -SPHERE */
173*7c478bd9Sstevel@tonic-gate 	03,0200+'d','r',	/* -DRE */
174*7c478bd9Sstevel@tonic-gate 	03,0200+'c','r',	/* -CRE */
175*7c478bd9Sstevel@tonic-gate 	03,0200+'b','r',	/* -BRE */
176*7c478bd9Sstevel@tonic-gate 	05,0200+'s','c','o','p',	/* -SCOPE */
177*7c478bd9Sstevel@tonic-gate 	04,'y',0200+'o','n',	/* Y-ONE */
178*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','o','n',	/* -STONE */
179*7c478bd9Sstevel@tonic-gate 	05,0200+'p','h','o','n',	/* -PHONE */
180*7c478bd9Sstevel@tonic-gate 	04,0200+'g','o','n',	/* -GONE */
181*7c478bd9Sstevel@tonic-gate 	04,'e',0200+'o','n',	/* E-ONE */
182*7c478bd9Sstevel@tonic-gate 	040+04,0200+'e','n','n',	/* -ENNE */
183*7c478bd9Sstevel@tonic-gate 	040+05,'a',0200+'r','i','n',	/* A-RINE */
184*7c478bd9Sstevel@tonic-gate 	05,0200+'c','l','i','n',	/* -CLINE */
185*7c478bd9Sstevel@tonic-gate 	04,0200+'l','i','n',	/* -LINE */
186*7c478bd9Sstevel@tonic-gate 	007,00200+'r','o','u',00200+'t','i','n',	/*-ROU-TINE */
187*7c478bd9Sstevel@tonic-gate 	04,0200+'s','o','m',	/* -SOME */
188*7c478bd9Sstevel@tonic-gate 	04,0200+'c','o','m',	/* -COME */
189*7c478bd9Sstevel@tonic-gate 	04,0200+'t','i','m',	/* -TIME */
190*7c478bd9Sstevel@tonic-gate 	03,0200+'z','l',	/* -ZLE */
191*7c478bd9Sstevel@tonic-gate 	03,0200+'t','l',	/* -TLE */
192*7c478bd9Sstevel@tonic-gate 	03,0200+'s','l',	/* -SLE */
193*7c478bd9Sstevel@tonic-gate 	03,0200+'p','l',	/* -PLE */
194*7c478bd9Sstevel@tonic-gate 	05,0200+'v','i','l','l',	/* -VILLE */
195*7c478bd9Sstevel@tonic-gate 	04,'c','k',0200+'l',	/* CK-LE */
196*7c478bd9Sstevel@tonic-gate 	03,0200+'k','l',	/* -KLE */
197*7c478bd9Sstevel@tonic-gate 	03,0200+'g','l',	/* -GLE */
198*7c478bd9Sstevel@tonic-gate 	03,0200+'f','l',	/* -FLE */
199*7c478bd9Sstevel@tonic-gate 	03,0200+'d','l',	/* -DLE */
200*7c478bd9Sstevel@tonic-gate 	03,0200+'c','l',	/* -CLE */
201*7c478bd9Sstevel@tonic-gate 	05,0200+'p','a',0200+'b','l',	/* -PA-BLE */
202*7c478bd9Sstevel@tonic-gate 	05,'f','a',0200+'b','l',	/* FA-BLE */
203*7c478bd9Sstevel@tonic-gate 	05,0200+'c','a',0200+'b','l',	/* -CA-BLE */
204*7c478bd9Sstevel@tonic-gate 	06,0200+'s','t','a','b','l',	/* -STABLE */
205*7c478bd9Sstevel@tonic-gate 	04,0200+'a','b','l',	/* -ABLE */
206*7c478bd9Sstevel@tonic-gate 	03,0200+'b','l',	/* -BLE */
207*7c478bd9Sstevel@tonic-gate 	04,0200+'d','a','l',	/* -DALE */
208*7c478bd9Sstevel@tonic-gate 	04,0200+'m','a','l',	/* -MALE */
209*7c478bd9Sstevel@tonic-gate 	04,0200+'s','a','l',	/* -SALE */
210*7c478bd9Sstevel@tonic-gate 	04,0200+'l','i','k',	/* -LIKE */
211*7c478bd9Sstevel@tonic-gate 	0340+05,'g',0200+'u','a','g',	/* -G/UAGE */
212*7c478bd9Sstevel@tonic-gate 	05,0200+'r','i','a','g',	/* -RIAGE */
213*7c478bd9Sstevel@tonic-gate 	05,'e','r',0200+'a','g',	/* ER-AGE */
214*7c478bd9Sstevel@tonic-gate 	04,'m',0200+'a','g',	/* M-AGE */
215*7c478bd9Sstevel@tonic-gate 	04,'k',0200+'a','g',	/* K-AGE */
216*7c478bd9Sstevel@tonic-gate 	04,'d',0200+'a','g',	/* D-AGE */
217*7c478bd9Sstevel@tonic-gate 	04,0200+'w','i','f',	/* -WIFE */
218*7c478bd9Sstevel@tonic-gate 	05,0200+'k','n','i','f',	/* -KNYFE */
219*7c478bd9Sstevel@tonic-gate 	03,0200+'s','e',	/* -SEE */
220*7c478bd9Sstevel@tonic-gate 	04,0200+'f','r','e',	/* -FREE */
221*7c478bd9Sstevel@tonic-gate 	0340+02,'e',	/* EE */
222*7c478bd9Sstevel@tonic-gate 	04,0200+'w','i','d',	/* -WIDE */
223*7c478bd9Sstevel@tonic-gate 	04,0200+'t','i','d',	/* -TIDE */
224*7c478bd9Sstevel@tonic-gate 	04,0200+'s','i','d',	/* -SIDE */
225*7c478bd9Sstevel@tonic-gate 	06,0200+'q','u','e','n','c',	/* -QUENCE */
226*7c478bd9Sstevel@tonic-gate 	07,0200+'f','l','u',0200+'e','n','c',	/* -FLU-ENCE */
227*7c478bd9Sstevel@tonic-gate 	040+06,'e','s',0200+'e','n','c',	/* ES-ENCE */
228*7c478bd9Sstevel@tonic-gate 	06,'e','r',0200+'e','n','c',	/* ER-ENCE */
229*7c478bd9Sstevel@tonic-gate 	05,'i',0200+'e','n','c',	/* I-ENCE */
230*7c478bd9Sstevel@tonic-gate 	040+05,0200+'s','a','n','c',	/* -SANCE */
231*7c478bd9Sstevel@tonic-gate 	06,'e','r',0200+'a','n','c',	/* ER-ANCE */
232*7c478bd9Sstevel@tonic-gate 	06,'a','r',0200+'a','n','c',	/* AR-ANCE */
233*7c478bd9Sstevel@tonic-gate 	05,0200+'n','a','n','c',	/* -NANCE */
234*7c478bd9Sstevel@tonic-gate 	07,0200+'b','a','l',0200+'a','n','c',	/* -BAL-ANCE */
235*7c478bd9Sstevel@tonic-gate 	05,'i',0200+'a','n','c',	/* I-ANCE */
236*7c478bd9Sstevel@tonic-gate 	07,0200+'j','u','s',0200+'t','i','c',	/* -JUS-TICE */
237*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','i','c',	/* -STICE */
238*7c478bd9Sstevel@tonic-gate 	05,0200+'p','i','e','c',	/* -PIECE */
239*7c478bd9Sstevel@tonic-gate 	05,0200+'p','l','a','c',	/* -PLACE */
240*7c478bd9Sstevel@tonic-gate 	0340+01,	/* /E */
241*7c478bd9Sstevel@tonic-gate 	00
242*7c478bd9Sstevel@tonic-gate };
243*7c478bd9Sstevel@tonic-gate 
244*7c478bd9Sstevel@tonic-gate static	unsigned char suff[] = {
245*7c478bd9Sstevel@tonic-gate 	03,0200+'o','f',	/* -OFF */
246*7c478bd9Sstevel@tonic-gate 	05,0200+'p','r','o','o',	/* -PROOF */
247*7c478bd9Sstevel@tonic-gate 	04,0200+'s','e','l',	/* -SELF */
248*7c478bd9Sstevel@tonic-gate 	03,0200+'r','i',	/* -RIF */
249*7c478bd9Sstevel@tonic-gate 	040+04,0200+'l','i','e',	/* -LIEF */
250*7c478bd9Sstevel@tonic-gate 	00
251*7c478bd9Sstevel@tonic-gate };
252*7c478bd9Sstevel@tonic-gate 
253*7c478bd9Sstevel@tonic-gate static	unsigned char sufg[] = {
254*7c478bd9Sstevel@tonic-gate 	03,0200+'l','o',	/* -LOG */
255*7c478bd9Sstevel@tonic-gate 	04,0200+'l','o','n',	/* -LONG */
256*7c478bd9Sstevel@tonic-gate 	05,'t',0200+'t','i','n',	/* T-TING */
257*7c478bd9Sstevel@tonic-gate 	06,0200+'s','t','r','i','n',	/*  -STRING */
258*7c478bd9Sstevel@tonic-gate 	05,'r',0200+'r','i','n',	/* R-RING */
259*7c478bd9Sstevel@tonic-gate 	05,'p',0200+'p','i','n',	/* P-PING */
260*7c478bd9Sstevel@tonic-gate 	05,'n',0200+'n','i','n',	/* N-NING */
261*7c478bd9Sstevel@tonic-gate 	05,'m',0200+'m','i','n',	/* M-MING */
262*7c478bd9Sstevel@tonic-gate 	05,'l',0200+'l','i','n',	/*  L-LING */
263*7c478bd9Sstevel@tonic-gate 	05,0200+'z','l','i','n',	/* -ZLING */
264*7c478bd9Sstevel@tonic-gate 	05,0200+'t','l','i','n',	/* -TLING */
265*7c478bd9Sstevel@tonic-gate 	040+05,'s',0200+'l','i','n',	/* S-LING */
266*7c478bd9Sstevel@tonic-gate 	05,'r',0200+'l','i','n',	/* R-LING */
267*7c478bd9Sstevel@tonic-gate 	05,0200+'p','l','i','n',	/* -PLING */
268*7c478bd9Sstevel@tonic-gate 	06,'n',0200+'k','l','i','n',	/* N-KLING */
269*7c478bd9Sstevel@tonic-gate 	05,'k',0200+'l','i','n',	/* K-LING */
270*7c478bd9Sstevel@tonic-gate 	05,0200+'g','l','i','n',	/* -GLING */
271*7c478bd9Sstevel@tonic-gate 	05,0200+'f','l','i','n',	/* -FLING */
272*7c478bd9Sstevel@tonic-gate 	05,0200+'d','l','i','n',	/* -DLING */
273*7c478bd9Sstevel@tonic-gate 	05,0200+'c','l','i','n',	/* -CLING */
274*7c478bd9Sstevel@tonic-gate 	05,0200+'b','l','i','n',	/* -BLING */
275*7c478bd9Sstevel@tonic-gate 	06,'y',0200+'t','h','i','n',	/* Y-THING */
276*7c478bd9Sstevel@tonic-gate 	07,'e','e','t','h',0200+'i','n',	/* EETH-ING */
277*7c478bd9Sstevel@tonic-gate 	06,'e',0200+'t','h','i','n',	/* E-THING */
278*7c478bd9Sstevel@tonic-gate 	05,'g',0200+'g','i','n',	/* G-GING */
279*7c478bd9Sstevel@tonic-gate 	05,'d',0200+'d','i','n',	/* D-DING */
280*7c478bd9Sstevel@tonic-gate 	05,'b',0200+'b','i','n',	/* B-BING */
281*7c478bd9Sstevel@tonic-gate 	03,0200+'i','n',	/* -ING */
282*7c478bd9Sstevel@tonic-gate 	00
283*7c478bd9Sstevel@tonic-gate };
284*7c478bd9Sstevel@tonic-gate 
285*7c478bd9Sstevel@tonic-gate static	unsigned char sufh[] = {
286*7c478bd9Sstevel@tonic-gate 	05,0200+'m','o','u','t',	/* -MOUTH */
287*7c478bd9Sstevel@tonic-gate 	05,0200+'w','o','r','t',	/* -WORTH */
288*7c478bd9Sstevel@tonic-gate 	04,0200+'w','i','t',	/* -WITH */
289*7c478bd9Sstevel@tonic-gate 	05,'t',0200+'t','i','s',	/* T-TISH */
290*7c478bd9Sstevel@tonic-gate 	05,'e',0200+'t','i','s',	/* E-TISH */
291*7c478bd9Sstevel@tonic-gate 	05,'p',0200+'p','i','s',	/* P-PISH */
292*7c478bd9Sstevel@tonic-gate 	05,'r',0200+'n','i','s',	/* R-NISH */
293*7c478bd9Sstevel@tonic-gate 	05,'n',0200+'n','i','s',	/* N-NISH */
294*7c478bd9Sstevel@tonic-gate 	05,0200+'p','l','i','s',	/* -PLISH */
295*7c478bd9Sstevel@tonic-gate 	05,0200+'g','u','i','s',	/*  -GUISH */
296*7c478bd9Sstevel@tonic-gate 	05,0200+'g','l','i','s',	/*  -GLISH */
297*7c478bd9Sstevel@tonic-gate 	05,'b',0200+'l','i','s',	/*  B-LISH */
298*7c478bd9Sstevel@tonic-gate 	05,'g',0200+'g','i','s',	/* G-GISH */
299*7c478bd9Sstevel@tonic-gate 	05,'d',0200+'d','i','s',	/* D-DISH */
300*7c478bd9Sstevel@tonic-gate 	03,0200+'i','s',	/* -ISH */
301*7c478bd9Sstevel@tonic-gate 	05,0200+'g','r','a','p',	/* -GRAPH */
302*7c478bd9Sstevel@tonic-gate 	07,0200+'b','o','r',0200+'o','u','g',	/* -BOR-OUGH */
303*7c478bd9Sstevel@tonic-gate 	05,0200+'b','u','r','g',	/* -BURGH */
304*7c478bd9Sstevel@tonic-gate 	04,0200+'v','i','c',	/* -VICH */
305*7c478bd9Sstevel@tonic-gate 	03,0200+'n','a',	/* -NAH */
306*7c478bd9Sstevel@tonic-gate 	03,0200+'l','a',	/* -LAH */
307*7c478bd9Sstevel@tonic-gate 	04,0200+'m','i',0200+'a',	/* -MI-AH */
308*7c478bd9Sstevel@tonic-gate 	00
309*7c478bd9Sstevel@tonic-gate };
310*7c478bd9Sstevel@tonic-gate 
311*7c478bd9Sstevel@tonic-gate static	unsigned char sufi[] = {
312*7c478bd9Sstevel@tonic-gate 	03,0200+'t','r',	/* -TRI */
313*7c478bd9Sstevel@tonic-gate 	03,0200+'c','h',	/* -CHI */
314*7c478bd9Sstevel@tonic-gate 	0200+03,'i','f',	/* IF-I */
315*7c478bd9Sstevel@tonic-gate 	0200+03,'e','d',	/* ED-I */
316*7c478bd9Sstevel@tonic-gate 	05,0200+'a','s','c','i',	/* -ASCII */
317*7c478bd9Sstevel@tonic-gate 	04,0200+'s','e','m',	/* -SEMI */
318*7c478bd9Sstevel@tonic-gate 	00
319*7c478bd9Sstevel@tonic-gate };
320*7c478bd9Sstevel@tonic-gate 
321*7c478bd9Sstevel@tonic-gate static	unsigned char sufk[] = {
322*7c478bd9Sstevel@tonic-gate 	04,0200+'w','o','r',	/* -WORK */
323*7c478bd9Sstevel@tonic-gate 	04,0200+'m','a','r',	/* -MARK */
324*7c478bd9Sstevel@tonic-gate 	04,0200+'b','o','o',	/* -BOOK */
325*7c478bd9Sstevel@tonic-gate 	04,0200+'w','a','l',	/* -WALK */
326*7c478bd9Sstevel@tonic-gate 	05,0200+'c','r','a','c',	/* -CRACK */
327*7c478bd9Sstevel@tonic-gate 	04,0200+'b','a','c',	/* -BACK */
328*7c478bd9Sstevel@tonic-gate 	00
329*7c478bd9Sstevel@tonic-gate };
330*7c478bd9Sstevel@tonic-gate 
331*7c478bd9Sstevel@tonic-gate static	unsigned char sufl[] = {
332*7c478bd9Sstevel@tonic-gate 	03,0200+'f','u',	/* -FUL */
333*7c478bd9Sstevel@tonic-gate 	05,'s',0200+'w','e','l',	/* S-WELL */
334*7c478bd9Sstevel@tonic-gate 	04,0200+'t','e','l',	/* -TELL */
335*7c478bd9Sstevel@tonic-gate 	05,0200+'s','h','e','l',	/* -SHELL */
336*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','a','l',	/* -STALL */
337*7c478bd9Sstevel@tonic-gate 	04,'s',0200+'t','a',	/* S-TAL */
338*7c478bd9Sstevel@tonic-gate 	04,0200+'b','a','l',	/* -BALL */
339*7c478bd9Sstevel@tonic-gate 	04,0200+'c','a','l',	/* -CALL */
340*7c478bd9Sstevel@tonic-gate 	03,'v',0200+'e',	/* V-EL */
341*7c478bd9Sstevel@tonic-gate 	03,'u',0200+'e',	/* U-EL */
342*7c478bd9Sstevel@tonic-gate 	03,'k',0200+'e',	/* K-EL */
343*7c478bd9Sstevel@tonic-gate 	04,'t','h',0200+'e',	/* TH-EL */
344*7c478bd9Sstevel@tonic-gate 	05,'t','c','h',0200+'e',	/* TCH-EL */
345*7c478bd9Sstevel@tonic-gate 	03,'a',0200+'e',	/* A-EL */
346*7c478bd9Sstevel@tonic-gate 	0140+04,0200+'q','u','a',	/* /QUAL */
347*7c478bd9Sstevel@tonic-gate 	040+03,'u',0200+'a',	/* U-AL */
348*7c478bd9Sstevel@tonic-gate 	03,0200+'t','a',	/* -TAL */
349*7c478bd9Sstevel@tonic-gate 	04,'u','r',0200+'a',	/* UR-AL */
350*7c478bd9Sstevel@tonic-gate 	040+05,'g',0200+'o',0200+'n','a',	/* G-O-NAL */
351*7c478bd9Sstevel@tonic-gate 	04,'o','n',0200+'a',	/* ON-AL */
352*7c478bd9Sstevel@tonic-gate 	03,0200+'n','a',	/* -NAL */
353*7c478bd9Sstevel@tonic-gate 	04,0200+'t','i','a',	/* -TIAL */
354*7c478bd9Sstevel@tonic-gate 	04,0200+'s','i','a',	/* -SIAL */
355*7c478bd9Sstevel@tonic-gate 	040+05,0200+'t','r','i',0200+'a',	/* -TRI-AL */
356*7c478bd9Sstevel@tonic-gate 	04,'r','i',0200+'a',	/* RI-AL */
357*7c478bd9Sstevel@tonic-gate 	04,0200+'n','i',0200+'a',	/* -NI-AL */
358*7c478bd9Sstevel@tonic-gate 	04,0200+'d','i',0200+'a',	/* -DI-AL */
359*7c478bd9Sstevel@tonic-gate 	04,0200+'c','i','a',	/* -CIAL */
360*7c478bd9Sstevel@tonic-gate 	03,0200+'g','a',	/* -GAL */
361*7c478bd9Sstevel@tonic-gate 	04,0200+'m','e','a',	/* -MEAL */
362*7c478bd9Sstevel@tonic-gate /*	040+04,0200+'r','e',0200+'a', */	/* -RE-AL */
363*7c478bd9Sstevel@tonic-gate 	040+04,0200+'r','e','a',	/* -REAL */
364*7c478bd9Sstevel@tonic-gate 	06,'c',0200+'t','i',0200+'c','a',	/* C-TI-CAL */
365*7c478bd9Sstevel@tonic-gate 	05,0200+'s','i',0200+'c','a',	/* -SI-CAL */
366*7c478bd9Sstevel@tonic-gate 	04,0200+'i',0200+'c','a',	/* -I-CAL */
367*7c478bd9Sstevel@tonic-gate 	03,0200+'c','a',	/* -CAL */
368*7c478bd9Sstevel@tonic-gate 	03,0200+'b','a',	/* -BAL */
369*7c478bd9Sstevel@tonic-gate 	06,0200+'n','o',0200+'m','i',0200+'a',	/* -NO-MI-AL */
370*7c478bd9Sstevel@tonic-gate 	00
371*7c478bd9Sstevel@tonic-gate };
372*7c478bd9Sstevel@tonic-gate 
373*7c478bd9Sstevel@tonic-gate static	unsigned char sufm[] = {
374*7c478bd9Sstevel@tonic-gate 	03,0200+'n','u',	/* -NUM */
375*7c478bd9Sstevel@tonic-gate 	05,'o',0200+'r','i',0200+'u',	/* O-RI-UM */
376*7c478bd9Sstevel@tonic-gate 	040+03,'i',0200+'u',	/* I-UM */
377*7c478bd9Sstevel@tonic-gate 	040+03,'e',0200+'u',	/* E-UM */
378*7c478bd9Sstevel@tonic-gate 	05,'i','v',0200+'i','s',	/* IV-ISM */
379*7c478bd9Sstevel@tonic-gate 	04,0200+'t','i','s',	/* -TISM */
380*7c478bd9Sstevel@tonic-gate 	05,'i',0200+'m','i','s',	/* I-MISM */
381*7c478bd9Sstevel@tonic-gate 	05,'a','l',0200+'i','s',	/* AL-ISM */
382*7c478bd9Sstevel@tonic-gate 	040+04,'e',0200+'i','s',	/* E-ISM */
383*7c478bd9Sstevel@tonic-gate 	040+04,'a',0200+'i','s',	/* A-ISM */
384*7c478bd9Sstevel@tonic-gate 	04,0200+'r','o','o',	/* -ROOM */
385*7c478bd9Sstevel@tonic-gate 	03,0200+'d','o',	/* -DOM */
386*7c478bd9Sstevel@tonic-gate 	03,0200+'h','a',	/* -HAM */
387*7c478bd9Sstevel@tonic-gate 	06,0200+'a',0200+'r','i','t','h',	/* -A-RITHM */
388*7c478bd9Sstevel@tonic-gate 	05,0200+'r','i','t','h',	/* -RITHM */
389*7c478bd9Sstevel@tonic-gate 	00
390*7c478bd9Sstevel@tonic-gate };
391*7c478bd9Sstevel@tonic-gate 
392*7c478bd9Sstevel@tonic-gate static	unsigned char sufn[] = {
393*7c478bd9Sstevel@tonic-gate 	05,0200+'k','n','o','w', /* -KNOWN */
394*7c478bd9Sstevel@tonic-gate 	04,0200+'t','o','w',	/* -TOWN */
395*7c478bd9Sstevel@tonic-gate 	04,0200+'d','o','w',	/* -DOWN */
396*7c478bd9Sstevel@tonic-gate 	04,0200+'t','u','r',	/* -TURN */
397*7c478bd9Sstevel@tonic-gate 	05,0200+'s','p','o','o',	/* -SPOON */
398*7c478bd9Sstevel@tonic-gate 	04,0200+'n','o','o',	/* -NOON */
399*7c478bd9Sstevel@tonic-gate 	04,0200+'m','o','o',	/* -MOON */
400*7c478bd9Sstevel@tonic-gate 	011,'a','l',0200+'i',0200+'z','a',0200+'t','i','o',	/* AL-I-ZA-TION */
401*7c478bd9Sstevel@tonic-gate 	07,0200+'i',0200+'z','a',0200+'t','i','o',	/* -I-ZA-TION */
402*7c478bd9Sstevel@tonic-gate 	07,'l',0200+'i',0200+'a',0200+'t','i','o',	/* L-I-A-TION */
403*7c478bd9Sstevel@tonic-gate 	04,0200+'t','i','o',	/* -TION */
404*7c478bd9Sstevel@tonic-gate 	040+05,'s',0200+'s','i','o',	/* S-SION */
405*7c478bd9Sstevel@tonic-gate 	04,0200+'s','i','o',	/* -SION */
406*7c478bd9Sstevel@tonic-gate 	04,'n',0200+'i','o',	/* N-ION */
407*7c478bd9Sstevel@tonic-gate 	04,0200+'g','i','o',	/* -GION */
408*7c478bd9Sstevel@tonic-gate 	04,0200+'c','i','o',	/* -CION */
409*7c478bd9Sstevel@tonic-gate 	03,0200+'c','o',	/* -CON */
410*7c478bd9Sstevel@tonic-gate 	05,0200+'c','o','l','o',	/* -COLON */
411*7c478bd9Sstevel@tonic-gate 	03,0200+'t','o',	/* -TON */
412*7c478bd9Sstevel@tonic-gate 	04,'i','s',0200+'o',		/* IS-ON */
413*7c478bd9Sstevel@tonic-gate 	03,0200+'s','o',	/* -SON */
414*7c478bd9Sstevel@tonic-gate 	03,0200+'r','i',	/* -RIN */
415*7c478bd9Sstevel@tonic-gate 	03,0200+'p','i',	/* -PIN */
416*7c478bd9Sstevel@tonic-gate 	03,0200+'n','i',	/* -NIN */
417*7c478bd9Sstevel@tonic-gate 	03,0200+'m','i',	/* -MIN */
418*7c478bd9Sstevel@tonic-gate 	03,0200+'l','i',	/* -LIN */
419*7c478bd9Sstevel@tonic-gate 	03,0200+'k','i',	/* -KIN */
420*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','e','i',	/* -STEIN */
421*7c478bd9Sstevel@tonic-gate 	04,0200+'t','a','i',	/* -TAIN */
422*7c478bd9Sstevel@tonic-gate 	05,'g','h','t',0200+'e',	/* GHT-EN */
423*7c478bd9Sstevel@tonic-gate 	05,0200+'w','o','m',0200+'e',	/* -WOM-EN */
424*7c478bd9Sstevel@tonic-gate 	03,0200+'m','e',	/* -MEN */
425*7c478bd9Sstevel@tonic-gate 	04,'o',0200+'k','e',	/* O-KEN */
426*7c478bd9Sstevel@tonic-gate 	03,'k',0200+'e',	/* K-EN */
427*7c478bd9Sstevel@tonic-gate 	04,0200+'t','e','e',	/* -TEEN */
428*7c478bd9Sstevel@tonic-gate 	04,0200+'s','e','e',	/* -SEEN */
429*7c478bd9Sstevel@tonic-gate 	040+03,0200+'s','a',	/* -SAN */
430*7c478bd9Sstevel@tonic-gate 	05,0200+'w','o','m',0200+'a',	/* -WOM-AN */
431*7c478bd9Sstevel@tonic-gate 	03,0200+'m','a',	/* -MAN */
432*7c478bd9Sstevel@tonic-gate 	04,0200+'t','i','a',	/* -TIAN */
433*7c478bd9Sstevel@tonic-gate 	04,0200+'s','i','a',	/* -SIAN */
434*7c478bd9Sstevel@tonic-gate 	040+04,'e',0200+'i','a',	/* E-IAN */
435*7c478bd9Sstevel@tonic-gate 	04,0200+'c','i','a',	/* -CIAN */
436*7c478bd9Sstevel@tonic-gate 	0300+03,'i','a',	/* IA/N */
437*7c478bd9Sstevel@tonic-gate 	05,0200+'c','l','e','a',	/* -CLEAN */
438*7c478bd9Sstevel@tonic-gate 	04,0200+'m','e','a',	/* -MEAN */
439*7c478bd9Sstevel@tonic-gate 	040+03,'e',0200+'a',	/* E-AN */
440*7c478bd9Sstevel@tonic-gate 	00
441*7c478bd9Sstevel@tonic-gate };
442*7c478bd9Sstevel@tonic-gate 
443*7c478bd9Sstevel@tonic-gate static	unsigned char sufo[] = {
444*7c478bd9Sstevel@tonic-gate 	05,0200+'m','a','c',0200+'r',	/* -MAC-RO */
445*7c478bd9Sstevel@tonic-gate 	00
446*7c478bd9Sstevel@tonic-gate };
447*7c478bd9Sstevel@tonic-gate 
448*7c478bd9Sstevel@tonic-gate static	unsigned char sufp[] = {
449*7c478bd9Sstevel@tonic-gate 	05,0200+'g','r','o','u',	/* -GROUP */
450*7c478bd9Sstevel@tonic-gate 	02,0200+'u',	/* -UP */
451*7c478bd9Sstevel@tonic-gate 	04,0200+'s','h','i',	/* -SHIP */
452*7c478bd9Sstevel@tonic-gate 	04,0200+'k','e','e',	/* -KEEP */
453*7c478bd9Sstevel@tonic-gate 	00
454*7c478bd9Sstevel@tonic-gate };
455*7c478bd9Sstevel@tonic-gate 
456*7c478bd9Sstevel@tonic-gate static	unsigned char sufr[] = {
457*7c478bd9Sstevel@tonic-gate 	04,0200+'z','a','r',	/* -ZARR */
458*7c478bd9Sstevel@tonic-gate 	0300+02,'r',	/* R/R */
459*7c478bd9Sstevel@tonic-gate 	03,0200+'t','o',	/* -TOR */
460*7c478bd9Sstevel@tonic-gate 	040+03,0200+'s','o',	/* -SOR */
461*7c478bd9Sstevel@tonic-gate 	040+04,0200+'r','i',0200+'o',	/* -RI-OR */
462*7c478bd9Sstevel@tonic-gate 	04,'i','z',0200+'e',	/* IZ-ER */
463*7c478bd9Sstevel@tonic-gate 	05,0200+'c','o','v',0200+'e',	/* -COV-ER */
464*7c478bd9Sstevel@tonic-gate 	04,0200+'o','v','e',	/* -OVER */
465*7c478bd9Sstevel@tonic-gate 	04,0200+'e','v',0200+'e',	/* -EV-ER */
466*7c478bd9Sstevel@tonic-gate 	8,0200+'c','o','m',0200+'p','u','t',0200+'e',	/* -COM-PUT-ER */
467*7c478bd9Sstevel@tonic-gate 	040+05,'u','s',0200+'t','e',	/* US-TER */
468*7c478bd9Sstevel@tonic-gate 	05,'o','s','t',0200+'e',	/* OST-ER */
469*7c478bd9Sstevel@tonic-gate 	040+05,0200+'a','c',0200+'t','e',	/* -AC-TER */
470*7c478bd9Sstevel@tonic-gate 	06,0200+'w','r','i','t',0200+'e',	/* -WRIT-ER */
471*7c478bd9Sstevel@tonic-gate 	040+05,'i','s',0200+'t','e',	/* IS-TER */
472*7c478bd9Sstevel@tonic-gate 	040+05,'e','s',0200+'t','e',	/* ES-TER */
473*7c478bd9Sstevel@tonic-gate 	040+05,'a','s',0200+'t','e',	/* AS-TER */
474*7c478bd9Sstevel@tonic-gate 	04,0200+'s','t','e',	/* -STER */
475*7c478bd9Sstevel@tonic-gate 	05,'a','r',0200+'t','e',	/* AR-TER */
476*7c478bd9Sstevel@tonic-gate 	04,'r','t',0200+'e',	/* RT-ER */
477*7c478bd9Sstevel@tonic-gate 	040+05,'m',0200+'e',0200+'t','e',	/* M-E-TER */
478*7c478bd9Sstevel@tonic-gate 	05,0200+'w','a',0200+'t','e',	/* -WA-TER */
479*7c478bd9Sstevel@tonic-gate 	03,'r',0200+'e',	/* R-ER */
480*7c478bd9Sstevel@tonic-gate 	04,'o','p',0200+'e',	/* OP-ER */
481*7c478bd9Sstevel@tonic-gate 	05,0200+'p','a',0200+'p','e',	/* -PA-PER */
482*7c478bd9Sstevel@tonic-gate 	04,'w','n',0200+'e',	/* WN-ER */
483*7c478bd9Sstevel@tonic-gate 	040+04,'s',0200+'n','e',	/* S-NER */
484*7c478bd9Sstevel@tonic-gate 	04,'o','n',0200+'e',	/* ON-ER */
485*7c478bd9Sstevel@tonic-gate 	04,'r','m',0200+'e',	/* RM-ER */
486*7c478bd9Sstevel@tonic-gate 	03,0200+'m','e',	/* -MER */
487*7c478bd9Sstevel@tonic-gate 	04,'l','l',0200+'e',	/* LL-ER */
488*7c478bd9Sstevel@tonic-gate 	05,'d',0200+'d','l','e',	/* D-DLER */
489*7c478bd9Sstevel@tonic-gate 	04,0200+'b','l','e',	/* -BLER */
490*7c478bd9Sstevel@tonic-gate 	03,'k',0200+'e',	/* K-ER */
491*7c478bd9Sstevel@tonic-gate 	05,'n',0200+'t','h','e',	/* N-THER */
492*7c478bd9Sstevel@tonic-gate 	06,0200+'f','a',0200+'t','h','e',	/* -FA-THER */
493*7c478bd9Sstevel@tonic-gate 	06,'e','i',0200+'t','h','e',	/* EI-THER */
494*7c478bd9Sstevel@tonic-gate 	04,'t','h',0200+'e',	/* TH-ER */
495*7c478bd9Sstevel@tonic-gate 	04,'s','h',0200+'e',	/* SH-ER */
496*7c478bd9Sstevel@tonic-gate 	04,0200+'p','h','e',	/* -PHER */
497*7c478bd9Sstevel@tonic-gate 	04,'c','h',0200+'e',	/* CH-ER */
498*7c478bd9Sstevel@tonic-gate 	04,'d','g',0200+'e',	/* DG-ER */
499*7c478bd9Sstevel@tonic-gate 	04,'r','d',0200+'e',	/* RD-ER */
500*7c478bd9Sstevel@tonic-gate 	06,'o','u','n','d',0200+'e',	/* OUND-ER */
501*7c478bd9Sstevel@tonic-gate 	04,'l','d',0200+'e',	/* LD-ER */
502*7c478bd9Sstevel@tonic-gate 	04,'i','d',0200+'e',	/* ID-ER */
503*7c478bd9Sstevel@tonic-gate 	05,0200+'d','u','c',0200+'e',	/* -DUC-ER */
504*7c478bd9Sstevel@tonic-gate 	04,'n','c',0200+'e',	/* NC-ER */
505*7c478bd9Sstevel@tonic-gate 	0100+02, 0200+'e',	/*  /ER */
506*7c478bd9Sstevel@tonic-gate 	03,0200+'s','a',	/* -SAR */
507*7c478bd9Sstevel@tonic-gate 	040+06,'a','c',0200+'u',0200+'l','a',	/* AC-U-LAR */
508*7c478bd9Sstevel@tonic-gate 	040+06,'e','c',0200+'u',0200+'l','a',	/* EC-U-LAR */
509*7c478bd9Sstevel@tonic-gate 	040+06,'i','c',0200+'u',0200+'l','a',	/* IC-U-LAR */
510*7c478bd9Sstevel@tonic-gate 	040+06,'e','g',0200+'u',0200+'l','a',	/* EG-U-LAR */
511*7c478bd9Sstevel@tonic-gate 	00
512*7c478bd9Sstevel@tonic-gate };
513*7c478bd9Sstevel@tonic-gate 
514*7c478bd9Sstevel@tonic-gate static	unsigned char sufs[] = {
515*7c478bd9Sstevel@tonic-gate 	040+04,'u',0200+'o','u',	/* U-OUS */
516*7c478bd9Sstevel@tonic-gate 	05,0200+'t','i','o','u',	/* -TIOUS */
517*7c478bd9Sstevel@tonic-gate 	05,0200+'g','i','o','u',	/* -GIOUS */
518*7c478bd9Sstevel@tonic-gate 	05,0200+'c','i','o','u',	/* -CIOUS */
519*7c478bd9Sstevel@tonic-gate 	040+04,'i',0200+'o','u',	/* I-OUS */
520*7c478bd9Sstevel@tonic-gate 	05,0200+'g','e','o','u',	/* -GEOUS */
521*7c478bd9Sstevel@tonic-gate 	05,0200+'c','e','o','u',	/* -CEOUS */
522*7c478bd9Sstevel@tonic-gate 	04,'e',0200+'o','u',	/* E-OUS */
523*7c478bd9Sstevel@tonic-gate 	0140+02,0200+'u',	/* /US */
524*7c478bd9Sstevel@tonic-gate 	04,0200+'n','e','s',	/* -NESS */
525*7c478bd9Sstevel@tonic-gate 	04,0200+'l','e','s',	/* -LESS */
526*7c478bd9Sstevel@tonic-gate 	0140+02,0200+'s',	/* /SS */
527*7c478bd9Sstevel@tonic-gate 	040+05,'p',0200+'o',0200+'l','i',	/* P-O-LIS */
528*7c478bd9Sstevel@tonic-gate 	0140+02,0200+'i',	/* /IS */
529*7c478bd9Sstevel@tonic-gate 	0100+03,0200+'x','e',	/* X/ES */
530*7c478bd9Sstevel@tonic-gate 	0100+03,0200+'s','e',	/* S/ES */
531*7c478bd9Sstevel@tonic-gate 	0100+04,'s','h',0200+'e',	/* SH/ES */
532*7c478bd9Sstevel@tonic-gate 	0100+04,'c','h',0200+'e',	/* CH/ES */
533*7c478bd9Sstevel@tonic-gate 	0300+01,	/* /S */
534*7c478bd9Sstevel@tonic-gate 	00
535*7c478bd9Sstevel@tonic-gate };
536*7c478bd9Sstevel@tonic-gate 
537*7c478bd9Sstevel@tonic-gate static	unsigned char suft[] = {
538*7c478bd9Sstevel@tonic-gate 	06,'i','o','n',0200+'i','s',	/* ION-IST */
539*7c478bd9Sstevel@tonic-gate 	05,'i','n',0200+'i','s',	/* IN-IST */
540*7c478bd9Sstevel@tonic-gate 	05,'a','l',0200+'i','s',	/* AL-IST */
541*7c478bd9Sstevel@tonic-gate 	06,'l',0200+'o',0200+'g','i','s',	/* L-O-GIST */
542*7c478bd9Sstevel@tonic-gate 	05,'h','t',0200+'e','s',	/* HT-EST */
543*7c478bd9Sstevel@tonic-gate 	04,'i',0200+'e','s',	/* I-EST */
544*7c478bd9Sstevel@tonic-gate 	05,'g',0200+'g','e','s',	/* G-GEST */
545*7c478bd9Sstevel@tonic-gate 	04,'g',0200+'e','s',	/* G-EST */
546*7c478bd9Sstevel@tonic-gate 	05,'d',0200+'d','e','s',	/* D-DEST */
547*7c478bd9Sstevel@tonic-gate 	04,'d',0200+'e','s',	/* D-EST */
548*7c478bd9Sstevel@tonic-gate 	04,0200+'c','a','s',	/* -CAST */
549*7c478bd9Sstevel@tonic-gate 	05,0200+'h','e','a','r',	/* -HEART */
550*7c478bd9Sstevel@tonic-gate 	04,0200+'f','o','o',	/* -FOOT */
551*7c478bd9Sstevel@tonic-gate 	03,'i',0200+'o',	/* I-OT */
552*7c478bd9Sstevel@tonic-gate 	05,0200+'f','r','o','n',	/* -FRONT */
553*7c478bd9Sstevel@tonic-gate 	05,0200+'p','r','i','n',	/* -PRINT */
554*7c478bd9Sstevel@tonic-gate 	04,0200+'m','e','n',	/* -MENT */
555*7c478bd9Sstevel@tonic-gate 	05,0200+'c','i','e','n',	/* -CIENT */
556*7c478bd9Sstevel@tonic-gate 	04,'i',0200+'a','n',	/* I-ANT */
557*7c478bd9Sstevel@tonic-gate 	06,0200+'w','r','i','g','h',	/* -WRIGHT */
558*7c478bd9Sstevel@tonic-gate 	06,0200+'b','r','i','g','h',	/* -BRIGHT */
559*7c478bd9Sstevel@tonic-gate 	06,0200+'f','l','i','g','h',	/* -FLIGHT */
560*7c478bd9Sstevel@tonic-gate 	06,0200+'w','e','i','g','h',	/* -WEIGHT */
561*7c478bd9Sstevel@tonic-gate 	05,0200+'s','h','i','f',	/* -SHIFT */
562*7c478bd9Sstevel@tonic-gate 	05,0200+'c','r','a','f',	/* -CRAFT */
563*7c478bd9Sstevel@tonic-gate 	040+04,'d','g',0200+'e',	/* DG-ET */
564*7c478bd9Sstevel@tonic-gate 	04,0200+'g','o','a',	/* -GOAT */
565*7c478bd9Sstevel@tonic-gate 	04,0200+'c','o','a',	/* -COAT */
566*7c478bd9Sstevel@tonic-gate 	04,0200+'b','o','a',	/* -BOAT */
567*7c478bd9Sstevel@tonic-gate 	04,0200+'w','h','a',	/* -WHAT */
568*7c478bd9Sstevel@tonic-gate 	04,0200+'c','u','i',	/* -CUIT */
569*7c478bd9Sstevel@tonic-gate 	00
570*7c478bd9Sstevel@tonic-gate };
571*7c478bd9Sstevel@tonic-gate 
572*7c478bd9Sstevel@tonic-gate static	unsigned char sufy[] = {
573*7c478bd9Sstevel@tonic-gate 	040+04,'e','s',0200+'t',	/* ES-TY */
574*7c478bd9Sstevel@tonic-gate 	040+05,'q','u','i',0200+'t',	/* QUI-TY */
575*7c478bd9Sstevel@tonic-gate 	04,0200+'t','i',0200+'t',	/* -TI-TY */
576*7c478bd9Sstevel@tonic-gate 	040+05,'o','s',0200+'i',0200+'t',	/* OS-I-TY */
577*7c478bd9Sstevel@tonic-gate 	04,0200+'s','i',0200+'t',	/* -SI-TY */
578*7c478bd9Sstevel@tonic-gate 	05,'i','n',0200+'i',0200+'t',	/* IN-I-TY */
579*7c478bd9Sstevel@tonic-gate 	04,'n','i',0200+'t',	/* NI-TY */
580*7c478bd9Sstevel@tonic-gate 	040+010,'f','a',0200+'b','i','l',0200+'i',0200+'t',	/* FA-BIL-I-TY */
581*7c478bd9Sstevel@tonic-gate 	010,0200+'c','a',0200+'b','i','l',0200+'i',0200+'t',	/* -CA-BIL-I-TY */
582*7c478bd9Sstevel@tonic-gate 	010,0200+'p','a',0200+'b','i','l',0200+'i',0200+'t',	/* -PA-BIL-I-TY */
583*7c478bd9Sstevel@tonic-gate 	06,0200+'b','i','l',0200+'i',0200+'t',	/* -BIL-I-TY */
584*7c478bd9Sstevel@tonic-gate 	03,'i',0200+'t',	/* I-TY */
585*7c478bd9Sstevel@tonic-gate 	04,0200+'b','u','r',	/* -BUR-Y */
586*7c478bd9Sstevel@tonic-gate 	04,0200+'t','o',0200+'r',	/* -TO-RY */
587*7c478bd9Sstevel@tonic-gate 	05,0200+'q','u','a','r',	/* -QUAR-Y */
588*7c478bd9Sstevel@tonic-gate 	040+04,'u',0200+'a','r',	/* U-ARY */
589*7c478bd9Sstevel@tonic-gate 	07,0200+'m','e','n',0200+'t','a',0200+'r',	/* -MEN-TA-RY */
590*7c478bd9Sstevel@tonic-gate 	06,'i','o','n',0200+'a','r',	/* ION-ARY */
591*7c478bd9Sstevel@tonic-gate 	04,'i',0200+'a','r',	/* I-ARY */
592*7c478bd9Sstevel@tonic-gate 	04,'n',0200+'o',0200+'m',	/* N-O-MY */
593*7c478bd9Sstevel@tonic-gate 	03,0200+'p','l',	/* -PLY */
594*7c478bd9Sstevel@tonic-gate 	04,'g',0200+'g','l',	/* G-GLY */
595*7c478bd9Sstevel@tonic-gate 	05,0200+'p','a',0200+'b','l',	/* -PA-BLY */
596*7c478bd9Sstevel@tonic-gate 	05,'f','a',0200+'b','l',	/* FA-BLY */
597*7c478bd9Sstevel@tonic-gate 	05,0200+'c','a',0200+'b','l',	/* -CA-BLY */
598*7c478bd9Sstevel@tonic-gate 	04,0200+'a','b','l',	/* -ABLY */
599*7c478bd9Sstevel@tonic-gate 	03,0200+'b','l',	/* -BLY */
600*7c478bd9Sstevel@tonic-gate 	02,0200+'l',	/* -LY */
601*7c478bd9Sstevel@tonic-gate 	03,0200+'s','k',	/* -SKY */
602*7c478bd9Sstevel@tonic-gate 	040+06,'g',0200+'r','a',0200+'p','h',	/* G-RA-PHY */
603*7c478bd9Sstevel@tonic-gate 	04,'l',0200+'o',0200+'g',	/* L-O-GY */
604*7c478bd9Sstevel@tonic-gate 	02,0200+'f',	/* -FY */
605*7c478bd9Sstevel@tonic-gate 	03,0200+'n','e',	/* -NEY */
606*7c478bd9Sstevel@tonic-gate 	03,0200+'l','e',	/* -LEY */
607*7c478bd9Sstevel@tonic-gate 	04,'c','k',0200+'e',	/* CK-EY */
608*7c478bd9Sstevel@tonic-gate 	03,0200+'k','e',	/* -KEY */
609*7c478bd9Sstevel@tonic-gate 	04,0200+'b','o','d',	/* -BODY */
610*7c478bd9Sstevel@tonic-gate 	05,0200+'s','t','u','d',	/* -STUDY */
611*7c478bd9Sstevel@tonic-gate 	0340+04,'e','e','d',	/* EEDY */
612*7c478bd9Sstevel@tonic-gate 	02,0200+'b',	/* -BY */
613*7c478bd9Sstevel@tonic-gate 	03,0200+'w','a',	/* -WAY */
614*7c478bd9Sstevel@tonic-gate 	03,0200+'d','a',	/* -DAY */
615*7c478bd9Sstevel@tonic-gate 	00
616*7c478bd9Sstevel@tonic-gate };
617*7c478bd9Sstevel@tonic-gate 
618*7c478bd9Sstevel@tonic-gate unsigned char	*suftab[] = {
619*7c478bd9Sstevel@tonic-gate 	sufa,
620*7c478bd9Sstevel@tonic-gate 	0,
621*7c478bd9Sstevel@tonic-gate 	sufc,
622*7c478bd9Sstevel@tonic-gate 	sufd,
623*7c478bd9Sstevel@tonic-gate 	sufe,
624*7c478bd9Sstevel@tonic-gate 	suff,
625*7c478bd9Sstevel@tonic-gate 	sufg,
626*7c478bd9Sstevel@tonic-gate 	sufh,
627*7c478bd9Sstevel@tonic-gate 	sufi,
628*7c478bd9Sstevel@tonic-gate 	0,
629*7c478bd9Sstevel@tonic-gate 	sufk,
630*7c478bd9Sstevel@tonic-gate 	sufl,
631*7c478bd9Sstevel@tonic-gate 	sufm,
632*7c478bd9Sstevel@tonic-gate 	sufn,
633*7c478bd9Sstevel@tonic-gate 	sufo,
634*7c478bd9Sstevel@tonic-gate 	sufp,
635*7c478bd9Sstevel@tonic-gate 	0,
636*7c478bd9Sstevel@tonic-gate 	sufr,
637*7c478bd9Sstevel@tonic-gate 	sufs,
638*7c478bd9Sstevel@tonic-gate 	suft,
639*7c478bd9Sstevel@tonic-gate 	0,
640*7c478bd9Sstevel@tonic-gate 	0,
641*7c478bd9Sstevel@tonic-gate 	0,
642*7c478bd9Sstevel@tonic-gate 	0,
643*7c478bd9Sstevel@tonic-gate 	sufy,
644*7c478bd9Sstevel@tonic-gate 	0,
645*7c478bd9Sstevel@tonic-gate };
646