Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd |
michael@0 | 2 | See the file COPYING for copying permission. |
michael@0 | 3 | */ |
michael@0 | 4 | |
michael@0 | 5 | #define ASCII_A 0x41 |
michael@0 | 6 | #define ASCII_B 0x42 |
michael@0 | 7 | #define ASCII_C 0x43 |
michael@0 | 8 | #define ASCII_D 0x44 |
michael@0 | 9 | #define ASCII_E 0x45 |
michael@0 | 10 | #define ASCII_F 0x46 |
michael@0 | 11 | #define ASCII_G 0x47 |
michael@0 | 12 | #define ASCII_H 0x48 |
michael@0 | 13 | #define ASCII_I 0x49 |
michael@0 | 14 | #define ASCII_J 0x4A |
michael@0 | 15 | #define ASCII_K 0x4B |
michael@0 | 16 | #define ASCII_L 0x4C |
michael@0 | 17 | #define ASCII_M 0x4D |
michael@0 | 18 | #define ASCII_N 0x4E |
michael@0 | 19 | #define ASCII_O 0x4F |
michael@0 | 20 | #define ASCII_P 0x50 |
michael@0 | 21 | #define ASCII_Q 0x51 |
michael@0 | 22 | #define ASCII_R 0x52 |
michael@0 | 23 | #define ASCII_S 0x53 |
michael@0 | 24 | #define ASCII_T 0x54 |
michael@0 | 25 | #define ASCII_U 0x55 |
michael@0 | 26 | #define ASCII_V 0x56 |
michael@0 | 27 | #define ASCII_W 0x57 |
michael@0 | 28 | #define ASCII_X 0x58 |
michael@0 | 29 | #define ASCII_Y 0x59 |
michael@0 | 30 | #define ASCII_Z 0x5A |
michael@0 | 31 | |
michael@0 | 32 | #define ASCII_a 0x61 |
michael@0 | 33 | #define ASCII_b 0x62 |
michael@0 | 34 | #define ASCII_c 0x63 |
michael@0 | 35 | #define ASCII_d 0x64 |
michael@0 | 36 | #define ASCII_e 0x65 |
michael@0 | 37 | #define ASCII_f 0x66 |
michael@0 | 38 | #define ASCII_g 0x67 |
michael@0 | 39 | #define ASCII_h 0x68 |
michael@0 | 40 | #define ASCII_i 0x69 |
michael@0 | 41 | #define ASCII_j 0x6A |
michael@0 | 42 | #define ASCII_k 0x6B |
michael@0 | 43 | #define ASCII_l 0x6C |
michael@0 | 44 | #define ASCII_m 0x6D |
michael@0 | 45 | #define ASCII_n 0x6E |
michael@0 | 46 | #define ASCII_o 0x6F |
michael@0 | 47 | #define ASCII_p 0x70 |
michael@0 | 48 | #define ASCII_q 0x71 |
michael@0 | 49 | #define ASCII_r 0x72 |
michael@0 | 50 | #define ASCII_s 0x73 |
michael@0 | 51 | #define ASCII_t 0x74 |
michael@0 | 52 | #define ASCII_u 0x75 |
michael@0 | 53 | #define ASCII_v 0x76 |
michael@0 | 54 | #define ASCII_w 0x77 |
michael@0 | 55 | #define ASCII_x 0x78 |
michael@0 | 56 | #define ASCII_y 0x79 |
michael@0 | 57 | #define ASCII_z 0x7A |
michael@0 | 58 | |
michael@0 | 59 | #define ASCII_0 0x30 |
michael@0 | 60 | #define ASCII_1 0x31 |
michael@0 | 61 | #define ASCII_2 0x32 |
michael@0 | 62 | #define ASCII_3 0x33 |
michael@0 | 63 | #define ASCII_4 0x34 |
michael@0 | 64 | #define ASCII_5 0x35 |
michael@0 | 65 | #define ASCII_6 0x36 |
michael@0 | 66 | #define ASCII_7 0x37 |
michael@0 | 67 | #define ASCII_8 0x38 |
michael@0 | 68 | #define ASCII_9 0x39 |
michael@0 | 69 | |
michael@0 | 70 | #define ASCII_TAB 0x09 |
michael@0 | 71 | #define ASCII_SPACE 0x20 |
michael@0 | 72 | #define ASCII_EXCL 0x21 |
michael@0 | 73 | #define ASCII_QUOT 0x22 |
michael@0 | 74 | #define ASCII_AMP 0x26 |
michael@0 | 75 | #define ASCII_APOS 0x27 |
michael@0 | 76 | #define ASCII_MINUS 0x2D |
michael@0 | 77 | #define ASCII_PERIOD 0x2E |
michael@0 | 78 | #define ASCII_COLON 0x3A |
michael@0 | 79 | #define ASCII_SEMI 0x3B |
michael@0 | 80 | #define ASCII_LT 0x3C |
michael@0 | 81 | #define ASCII_EQUALS 0x3D |
michael@0 | 82 | #define ASCII_GT 0x3E |
michael@0 | 83 | #define ASCII_LSQB 0x5B |
michael@0 | 84 | #define ASCII_RSQB 0x5D |
michael@0 | 85 | #define ASCII_UNDERSCORE 0x5F |