summaryrefslogtreecommitdiff
path: root/tests/chardata.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:23 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:23 -0800
commitf062c26c3f3a2e17d8d0a1280503efe008ce3d89 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /tests/chardata.h
parentda44bf784a2b6acb5df7f40b32c0d4b563fba3ed (diff)
downloadexpat-f062c26c3f3a2e17d8d0a1280503efe008ce3d89.tar.gz
auto import from //depot/cupcake/@135843
Diffstat (limited to 'tests/chardata.h')
-rw-r--r--tests/chardata.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/chardata.h b/tests/chardata.h
deleted file mode 100644
index e8dc4ce2..00000000
--- a/tests/chardata.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/* chardata.h
-
- Interface to some helper routines used to accumulate and check text
- and attribute content.
-*/
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifndef XML_CHARDATA_H
-#define XML_CHARDATA_H 1
-
-#ifndef XML_VERSION
-#include "expat.h" /* need XML_Char */
-#endif
-
-
-typedef struct {
- int count; /* # of chars, < 0 if not set */
- XML_Char data[1024];
-} CharData;
-
-
-void CharData_Init(CharData *storage);
-
-void CharData_AppendString(CharData *storage, const char *s);
-
-void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
-
-int CharData_CheckString(CharData *storage, const char *s);
-
-int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
-
-
-#endif /* XML_CHARDATA_H */
-
-#ifdef __cplusplus
-}
-#endif