home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: OtherApp / OtherApp.zip / entrand.zip / ent / iso8859.c < prev    next >
Text File  |  1998-10-19  |  488b  |  20 lines

  1.  
  2. /* ISO 8859/1 Latin-1 alphabetic and upper and lower case bit vector tables. */
  3.  
  4. /* LINTLIBRARY */
  5.  
  6. unsigned char isoalpha[32] = {
  7.     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,
  8.     254,255,255,255,254,255
  9. };
  10.  
  11. unsigned char isoupper[32] = {
  12.     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,
  13.     0,0,0,0
  14. };
  15.  
  16. unsigned char isolower[32] = {
  17.     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,
  18.     254,255
  19. };
  20.