diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2003-08-04 01:06:15 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2003-08-04 01:06:15 +0000 |
| commit | 8d73bcb50f91dacb48c2ad61169cb2adc18c1eae (patch) | |
| tree | 8dc27e3739f423d3e06680c19d9b6e86a0960268 /include | |
| parent | 5ee43b06000bf42aea1955260aa867c6e466e0a4 (diff) | |
| download | android_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.h | 3 |
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. */ |
