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 /*================================================================
andrewbonney 0:07919e3d6c56 2 ** Copyright 2000, Clark Cooper
andrewbonney 0:07919e3d6c56 3 ** All rights reserved.
andrewbonney 0:07919e3d6c56 4 **
andrewbonney 0:07919e3d6c56 5 ** This is free software. You are permitted to copy, distribute, or modify
andrewbonney 0:07919e3d6c56 6 ** it under the terms of the MIT/X license (contained in the COPYING file
andrewbonney 0:07919e3d6c56 7 ** with this distribution.)
andrewbonney 0:07919e3d6c56 8 **
andrewbonney 0:07919e3d6c56 9 */
andrewbonney 0:07919e3d6c56 10
andrewbonney 0:07919e3d6c56 11 #ifndef MACCONFIG_H
andrewbonney 0:07919e3d6c56 12 #define MACCONFIG_H
andrewbonney 0:07919e3d6c56 13
andrewbonney 0:07919e3d6c56 14
andrewbonney 0:07919e3d6c56 15 /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
andrewbonney 0:07919e3d6c56 16 #define BYTEORDER 4321
andrewbonney 0:07919e3d6c56 17
andrewbonney 0:07919e3d6c56 18 /* Define to 1 if you have the `bcopy' function. */
andrewbonney 0:07919e3d6c56 19 #undef HAVE_BCOPY
andrewbonney 0:07919e3d6c56 20
andrewbonney 0:07919e3d6c56 21 /* Define to 1 if you have the `memmove' function. */
andrewbonney 0:07919e3d6c56 22 #define HAVE_MEMMOVE
andrewbonney 0:07919e3d6c56 23
andrewbonney 0:07919e3d6c56 24 /* Define to 1 if you have a working `mmap' system call. */
andrewbonney 0:07919e3d6c56 25 #undef HAVE_MMAP
andrewbonney 0:07919e3d6c56 26
andrewbonney 0:07919e3d6c56 27 /* Define to 1 if you have the <unistd.h> header file. */
andrewbonney 0:07919e3d6c56 28 #undef HAVE_UNISTD_H
andrewbonney 0:07919e3d6c56 29
andrewbonney 0:07919e3d6c56 30 /* whether byteorder is bigendian */
andrewbonney 0:07919e3d6c56 31 #define WORDS_BIGENDIAN
andrewbonney 0:07919e3d6c56 32
andrewbonney 0:07919e3d6c56 33 /* Define to specify how much context to retain around the current parse
andrewbonney 0:07919e3d6c56 34 point. */
andrewbonney 0:07919e3d6c56 35 #undef XML_CONTEXT_BYTES
andrewbonney 0:07919e3d6c56 36
andrewbonney 0:07919e3d6c56 37 /* Define to make parameter entity parsing functionality available. */
andrewbonney 0:07919e3d6c56 38 #define XML_DTD
andrewbonney 0:07919e3d6c56 39
andrewbonney 0:07919e3d6c56 40 /* Define to make XML Namespaces functionality available. */
andrewbonney 0:07919e3d6c56 41 #define XML_NS
andrewbonney 0:07919e3d6c56 42
andrewbonney 0:07919e3d6c56 43 /* Define to empty if `const' does not conform to ANSI C. */
andrewbonney 0:07919e3d6c56 44 #undef const
andrewbonney 0:07919e3d6c56 45
andrewbonney 0:07919e3d6c56 46 /* Define to `long' if <sys/types.h> does not define. */
andrewbonney 0:07919e3d6c56 47 #define off_t long
andrewbonney 0:07919e3d6c56 48
andrewbonney 0:07919e3d6c56 49 /* Define to `unsigned' if <sys/types.h> does not define. */
andrewbonney 0:07919e3d6c56 50 #undef size_t
andrewbonney 0:07919e3d6c56 51
andrewbonney 0:07919e3d6c56 52
andrewbonney 0:07919e3d6c56 53 #endif /* ifndef MACCONFIG_H */