Lines 92-98
Link Here
|
92 |
* just in this file. |
92 |
* just in this file. |
93 |
*/ |
93 |
*/ |
94 |
#if 'a' == 97 /* it's ascii */ |
94 |
#if 'a' == 97 /* it's ascii */ |
95 |
const char casetable[] = { |
95 |
char casetable[] = { |
96 |
'\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007', |
96 |
'\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007', |
97 |
'\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017', |
97 |
'\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017', |
98 |
'\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027', |
98 |
'\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027', |
Lines 267-272
Link Here
|
267 |
return buf; |
267 |
return buf; |
268 |
} |
268 |
} |
269 |
|
269 |
|
|
|
270 |
/* fill_casetable --- fill casetable according to locale settings*/ |
271 |
|
272 |
void |
273 |
fill_casetable(void) |
274 |
{ |
275 |
int i; |
276 |
for (i=0; i<256; i++) |
277 |
casetable[i] = tolower (i); |
278 |
} |
279 |
|
270 |
/* flags2str --- make a flags value readable */ |
280 |
/* flags2str --- make a flags value readable */ |
271 |
|
281 |
|
272 |
const char * |
282 |
const char * |