aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-08-04 01:06:15 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-08-04 01:06:15 +0000
commit8d73bcb50f91dacb48c2ad61169cb2adc18c1eae (patch)
tree8dc27e3739f423d3e06680c19d9b6e86a0960268 /include
parent5ee43b06000bf42aea1955260aa867c6e466e0a4 (diff)
downloadandroid_external_libxml2-8d73bcb50f91dacb48c2ad61169cb2adc18c1eae.tar.gz
android_external_libxml2-8d73bcb50f91dacb48c2ad61169cb2adc18c1eae.tar.bz2
android_external_libxml2-8d73bcb50f91dacb48c2ad61169cb2adc18c1eae.zip
added a new API to split a QName without generating any memory allocation
* tree.c include/libxml/tree.h: added a new API to split a QName without generating any memory allocation * valid.c: fixed another problem with namespaces on element in mixed content case * python/tests/reader2.py: updated the testcase with Bjorn Reese fix to reader for unsignificant white space * parser.c HTMLparser.c: cleanup. Daniel
Diffstat (limited to 'include')
-rw-r--r--include/libxml/tree.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libxml/tree.h b/include/libxml/tree.h
index c8467e8e..4ca3c9ae 100644
--- a/include/libxml/tree.h
+++ b/include/libxml/tree.h
@@ -556,6 +556,9 @@ xmlChar * xmlBuildQName (const xmlChar *ncname,
int len);
xmlChar * xmlSplitQName2 (const xmlChar *name,
xmlChar **prefix);
+const xmlChar * xmlSplitQName3 (const xmlChar *name,
+ int *len);
+
/*
* Handling Buffers.
*/