diff options
Diffstat (limited to 'ent/iso8859.c')
-rw-r--r-- | ent/iso8859.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ent/iso8859.c b/ent/iso8859.c new file mode 100644 index 0000000..22186b5 --- /dev/null +++ b/ent/iso8859.c @@ -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 +}; |