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 #ifndef AMIGACONFIG_H
andrewbonney 0:07919e3d6c56 2 #define AMIGACONFIG_H
andrewbonney 0:07919e3d6c56 3
andrewbonney 0:07919e3d6c56 4 /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
andrewbonney 0:07919e3d6c56 5 #define BYTEORDER 4321
andrewbonney 0:07919e3d6c56 6
andrewbonney 0:07919e3d6c56 7 /* Define to 1 if you have the `bcopy' function. */
andrewbonney 0:07919e3d6c56 8 #define HAVE_BCOPY 1
andrewbonney 0:07919e3d6c56 9
andrewbonney 0:07919e3d6c56 10 /* Define to 1 if you have the <check.h> header file. */
andrewbonney 0:07919e3d6c56 11 #undef HAVE_CHECK_H
andrewbonney 0:07919e3d6c56 12
andrewbonney 0:07919e3d6c56 13 /* Define to 1 if you have the `memmove' function. */
andrewbonney 0:07919e3d6c56 14 #define HAVE_MEMMOVE 1
andrewbonney 0:07919e3d6c56 15
andrewbonney 0:07919e3d6c56 16 /* Define to 1 if you have the <unistd.h> header file. */
andrewbonney 0:07919e3d6c56 17 #define HAVE_UNISTD_H 1
andrewbonney 0:07919e3d6c56 18
andrewbonney 0:07919e3d6c56 19 /* whether byteorder is bigendian */
andrewbonney 0:07919e3d6c56 20 #define WORDS_BIGENDIAN
andrewbonney 0:07919e3d6c56 21
andrewbonney 0:07919e3d6c56 22 /* Define to specify how much context to retain around the current parse
andrewbonney 0:07919e3d6c56 23 point. */
andrewbonney 0:07919e3d6c56 24 #define XML_CONTEXT_BYTES 1024
andrewbonney 0:07919e3d6c56 25
andrewbonney 0:07919e3d6c56 26 /* Define to make parameter entity parsing functionality available. */
andrewbonney 0:07919e3d6c56 27 #define XML_DTD
andrewbonney 0:07919e3d6c56 28
andrewbonney 0:07919e3d6c56 29 /* Define to make XML Namespaces functionality available. */
andrewbonney 0:07919e3d6c56 30 #define XML_NS
andrewbonney 0:07919e3d6c56 31
andrewbonney 0:07919e3d6c56 32 #endif /* AMIGACONFIG_H */