home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _c57b58d898d02ee7c8a2e94ac166abff < prev    next >
Text File  |  2004-06-01  |  3KB  |  112 lines

  1. /*
  2. The contents of this file are subject to the Mozilla Public License
  3. Version 1.1 (the "License"); you may not use this file except in
  4. compliance with the License. You may obtain a copy of the License at
  5. http://www.mozilla.org/MPL/
  6.  
  7. Software distributed under the License is distributed on an "AS IS"
  8. basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  9. License for the specific language governing rights and limitations
  10. under the License.
  11.  
  12. The Original Code is expat.
  13.  
  14. The Initial Developer of the Original Code is James Clark.
  15. Portions created by James Clark are Copyright (C) 1998, 1999
  16. James Clark. All Rights Reserved.
  17.  
  18. Contributor(s):
  19.  
  20. Alternatively, the contents of this file may be used under the terms
  21. of the GNU General Public License (the "GPL"), in which case the
  22. provisions of the GPL are applicable instead of those above.  If you
  23. wish to allow use of your version of this file only under the terms of
  24. the GPL and not to allow others to use your version of this file under
  25. the MPL, indicate your decision by deleting the provisions above and
  26. replace them with the notice and other provisions required by the
  27. GPL. If you do not delete the provisions above, a recipient may use
  28. your version of this file under either the MPL or the GPL.
  29. */
  30.  
  31. #define ASCII_A 0x41
  32. #define ASCII_B 0x42
  33. #define ASCII_C 0x43
  34. #define ASCII_D 0x44
  35. #define ASCII_E 0x45
  36. #define ASCII_F 0x46
  37. #define ASCII_G 0x47
  38. #define ASCII_H 0x48
  39. #define ASCII_I 0x49
  40. #define ASCII_J 0x4A
  41. #define ASCII_K 0x4B
  42. #define ASCII_L 0x4C
  43. #define ASCII_M 0x4D
  44. #define ASCII_N 0x4E
  45. #define ASCII_O 0x4F
  46. #define ASCII_P 0x50
  47. #define ASCII_Q 0x51
  48. #define ASCII_R 0x52
  49. #define ASCII_S 0x53
  50. #define ASCII_T 0x54
  51. #define ASCII_U 0x55
  52. #define ASCII_V 0x56
  53. #define ASCII_W 0x57
  54. #define ASCII_X 0x58
  55. #define ASCII_Y 0x59
  56. #define ASCII_Z 0x5A
  57.  
  58. #define ASCII_a 0x61
  59. #define ASCII_b 0x62
  60. #define ASCII_c 0x63
  61. #define ASCII_d 0x64
  62. #define ASCII_e 0x65
  63. #define ASCII_f 0x66
  64. #define ASCII_g 0x67
  65. #define ASCII_h 0x68
  66. #define ASCII_i 0x69
  67. #define ASCII_j 0x6A
  68. #define ASCII_k 0x6B
  69. #define ASCII_l 0x6C
  70. #define ASCII_m 0x6D
  71. #define ASCII_n 0x6E
  72. #define ASCII_o 0x6F
  73. #define ASCII_p 0x70
  74. #define ASCII_q 0x71
  75. #define ASCII_r 0x72
  76. #define ASCII_s 0x73
  77. #define ASCII_t 0x74
  78. #define ASCII_u 0x75
  79. #define ASCII_v 0x76
  80. #define ASCII_w 0x77
  81. #define ASCII_x 0x78
  82. #define ASCII_y 0x79
  83. #define ASCII_z 0x7A
  84.  
  85. #define ASCII_0 0x30
  86. #define ASCII_1 0x31
  87. #define ASCII_2 0x32
  88. #define ASCII_3 0x33
  89. #define ASCII_4 0x34
  90. #define ASCII_5 0x35
  91. #define ASCII_6 0x36
  92. #define ASCII_7 0x37
  93. #define ASCII_8 0x38
  94. #define ASCII_9 0x39
  95.  
  96. #define ASCII_TAB 0x09
  97. #define ASCII_SPACE 0x20 
  98. #define ASCII_EXCL 0x21
  99. #define ASCII_QUOT 0x22
  100. #define ASCII_AMP 0x26
  101. #define ASCII_APOS 0x27
  102. #define ASCII_MINUS 0x2D
  103. #define ASCII_PERIOD 0x2E
  104. #define ASCII_COLON 0x3A
  105. #define ASCII_SEMI 0x3B
  106. #define ASCII_LT 0x3C
  107. #define ASCII_EQUALS 0x3D
  108. #define ASCII_GT 0x3E
  109. #define ASCII_LSQB 0x5B
  110. #define ASCII_RSQB 0x5D
  111. #define ASCII_UNDERSCORE 0x5F
  112.