Adding upstream version 1.9.14.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
ddf4b25f8f
commit
49fcf7364a
88 changed files with 62468 additions and 0 deletions
19
ent/iso8859.c
Normal file
19
ent/iso8859.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
|
||||
/* ISO 8859/1 Latin-1 alphabetic and upper and lower case bit vector tables. */
|
||||
|
||||
/* LINTLIBRARY */
|
||||
|
||||
unsigned char isoalpha[32] = {
|
||||
0,0,0,0,0,0,0,0,127,255,255,224,127,255,255,224,0,0,0,0,0,0,0,0,255,255,
|
||||
254,255,255,255,254,255
|
||||
};
|
||||
|
||||
unsigned char isoupper[32] = {
|
||||
0,0,0,0,0,0,0,0,127,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,255,255,254,254,
|
||||
0,0,0,0
|
||||
};
|
||||
|
||||
unsigned char isolower[32] = {
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,224,0,0,0,0,0,0,0,0,0,0,0,1,255,255,
|
||||
254,255
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue