home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 278.lha / RegexLibrary_v1.0 / lib2.c < prev    next >
C/C++ Source or Header  |  1989-08-06  |  2KB  |  57 lines

  1. /*
  2.  *  Default translation table for the GNU regular expression package.
  3.  *  Edwin Hoogerbeets 18/07/89
  4.  *
  5.  *  This file may be copied and distributed under the GNU Public
  6.  *  Licence. See the comment at the top of regex.c for details.
  7.  *
  8.  *  Adapted from Elib by Jim Mackraz, mklib by Edwin Hoogerbeets, and the
  9.  *  GNU regular expression package by the Free Software Foundation.
  10.  */
  11.  
  12. #include "regex.h"
  13.  
  14. /* Table for use in re_initialize_buffer(). Indexed by character, it gives
  15.  * the upper case equivalent of the character
  16.  */
  17.  
  18. char __Upcase[0400] = {
  19.  
  20.    000,  001,  002,  003,  004,  005,  006,  007,
  21.    010,  011,  012,  013,  014,  015,  016,  017,
  22.    020,  021,  022,  023,  024,  025,  026,  027,
  23.    030,  031,  032,  033,  034,  035,  036,  037,
  24.    040,  041,  042,  043,  044,  045,  046,  047,
  25.    050,  051,  052,  053,  054,  055,  056,  057,
  26.    060,  061,  062,  063,  064,  065,  066,  067,
  27.    070,  071,  072,  073,  074,  075,  076,  077,
  28.   0100, 0101, 0102, 0103, 0104, 0105, 0106, 0107,
  29.   0110, 0111, 0112, 0113, 0114, 0115, 0116, 0117,
  30.   0120, 0121, 0122, 0123, 0124, 0125, 0126, 0127,
  31.   0130, 0131, 0132, 0133, 0134, 0135, 0136, 0137,
  32.   0140, 0101, 0102, 0103, 0104, 0105, 0106, 0107,
  33.   0110, 0111, 0112, 0113, 0114, 0115, 0116, 0117,
  34.   0120, 0121, 0122, 0123, 0124, 0125, 0126, 0127,
  35.   0130, 0131, 0132, 0173, 0174, 0175, 0176, 0177,
  36.   0200, 0201, 0202, 0203, 0204, 0205, 0206, 0207,
  37.   0210, 0211, 0212, 0213, 0214, 0215, 0216, 0217,
  38.   0220, 0221, 0222, 0223, 0224, 0225, 0226, 0227,
  39.   0230, 0231, 0232, 0233, 0234, 0235, 0236, 0237,
  40.   0240, 0241, 0242, 0243, 0244, 0245, 0246, 0247,
  41.   0250, 0251, 0252, 0253, 0254, 0255, 0256, 0257,
  42.   0260, 0261, 0262, 0263, 0264, 0265, 0266, 0267,
  43.   0270, 0271, 0272, 0273, 0274, 0275, 0276, 0277,
  44.   0300, 0301, 0302, 0303, 0304, 0305, 0306, 0307,
  45.   0310, 0311, 0312, 0313, 0314, 0315, 0316, 0317,
  46.   0320, 0321, 0322, 0323, 0324, 0325, 0326, 0327,
  47.   0330, 0331, 0332, 0333, 0334, 0335, 0336, 0337,
  48.   0340, 0341, 0342, 0343, 0344, 0345, 0346, 0347,
  49.   0350, 0351, 0352, 0353, 0354, 0355, 0356, 0357,
  50.   0360, 0361, 0362, 0363, 0364, 0365, 0366, 0367,
  51.   0370, 0371, 0372, 0373, 0374, 0375, 0376, 0377
  52.  
  53. };
  54.  
  55.  
  56.  
  57.