Lines Matching defs:i
64 tchar *i;
66 i = wp;
67 while (punct(cbits(*i++)))
69 if (!alph(cbits(*--i)))
71 wdstart = i++;
72 while (alph(cbits(*i++)))
74 hyend = wdend = --i - 1;
75 while (punct(cbits(*i++)))
77 if (*--i)
93 i = *hyp;
95 *(hyp - 1) = i;
105 punct(i)
107 if (!i || alph(i))
115 alph(i)
117 if (i >= 'a' && i <= 'z' || i >= 'A' && i <= 'Z')
141 int i, k;
152 i = cbits(t);
153 if (i == ' ' || i == '\n') {
157 if (i == ' ')
162 if (i == '-') {
166 *j++ = maplow(i) | k;
227 tchar i;
232 if (!alph(cbits(i = cbits(*hyend))))
234 if (i < 'a')
235 i -= 'A' - 'a';
236 if ((s0 = suftab[i-'a']) == 0)
239 if ((i = *s0 & 017) == 0)
241 s = s0 + i - 1;
249 s0 += i;
251 s = s0 + i - 1;
276 maplow(i)
277 int i;
279 if (ischar(i) && isupper(i))
280 i = tolower(i);
281 return(i);
286 vowel(i)
287 int i;
289 switch (maplow(i)) {
292 case 'i':
358 int i, j;
360 i = t[maplow(a)-'a'][(j = maplow(b)-'a')/2];
362 i >>= 4;
363 return(i & 017);