SAX based XML parser

Dependents:   giken9_HTMLServer_Temp_Sample

Committer:
andrewbonney
Date:
Thu May 26 10:03:14 2011 +0000
Revision:
1:e96b2af301dd
Parent:
0:07919e3d6c56
Update to reduce buffer sizes

Who changed what in which revision?

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