aboutsummaryrefslogtreecommitdiffstats
path: root/encoding.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-08-01 12:22:24 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-08-01 12:22:24 +0000
commit6f46f6c5b8b01441e006428b642c4bb5f528bcbe (patch)
tree0773abb67764bd63ae036b1f9f97ae65252bd539 /encoding.c
parent2c135a1cf1aa69e87e0995ad614e8abc5650f54a (diff)
downloadandroid_external_libxml2-6f46f6c5b8b01441e006428b642c4bb5f528bcbe.tar.gz
android_external_libxml2-6f46f6c5b8b01441e006428b642c4bb5f528bcbe.tar.bz2
android_external_libxml2-6f46f6c5b8b01441e006428b642c4bb5f528bcbe.zip
Opening the interface xmlNewCharEncodingHandler as requested in #89415
* encoding.c include/libxml/encoding.h: Opening the interface xmlNewCharEncodingHandler as requested in #89415 * python/generator.py python/setup.py.in: applied cleanup patches from Marc-Andre Lemburg * tree.c: fixing bug #89332 on a specific case of loosing the XML-1.0 namespace on xml:xxx attributes Daniel
Diffstat (limited to 'encoding.c')
-rw-r--r--encoding.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/encoding.c b/encoding.c
index d2d5ca23..69b3dacc 100644
--- a/encoding.c
+++ b/encoding.c
@@ -1481,9 +1481,10 @@ static xmlCharEncodingHandlerPtr xmlDefaultCharEncodingHandler = NULL;
* @output: the xmlCharEncodingOutputFunc to write that encoding
*
* Create and registers an xmlCharEncodingHandler.
+ *
* Returns the xmlCharEncodingHandlerPtr created (or NULL in case of error).
*/
-static xmlCharEncodingHandlerPtr
+xmlCharEncodingHandlerPtr
xmlNewCharEncodingHandler(const char *name,
xmlCharEncodingInputFunc input,
xmlCharEncodingOutputFunc output) {