aboutsummaryrefslogtreecommitdiffstats
path: root/xmlIO.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-07-18 19:30:27 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-07-18 19:30:27 +0000
commit5e2dace1ca6fbb023d1ce848d4e98deefbbfec31 (patch)
tree11c326472dc001b64ae56f165323934d72a95336 /xmlIO.c
parent8599e70dd39c4cdc3da79fdc07859c911381b00b (diff)
downloadandroid_external_libxml2-5e2dace1ca6fbb023d1ce848d4e98deefbbfec31.tar.gz
android_external_libxml2-5e2dace1ca6fbb023d1ce848d4e98deefbbfec31.tar.bz2
android_external_libxml2-5e2dace1ca6fbb023d1ce848d4e98deefbbfec31.zip
Cleanup, cleanup .. removed libxml softlink for good cleanup to get 100%
Cleanup, cleanup .. * configure.in Makefile.am: removed libxml softlink for good * include/libxml/*.h *.c doc/Makefile.am: cleanup to get 100% coverage by gtk-doc Daniel
Diffstat (limited to 'xmlIO.c')
-rw-r--r--xmlIO.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/xmlIO.c b/xmlIO.c
index a7269c74..7c328c26 100644
--- a/xmlIO.c
+++ b/xmlIO.c
@@ -864,6 +864,15 @@ xmlOutputBufferClose(xmlOutputBufferPtr out) {
}
/**
+ * xmlParserInputBufferCreateFname:
+ * @URI: a C string containing the URI or filename
+ * @enc: the charset encoding if known
+ *
+ * VMS version of xmlParserInputBufferCreateFilename()
+ *
+ * Returns the new parser input or NULL
+ */
+/**
* xmlParserInputBufferCreateFilename:
* @URI: a C string containing the URI or filename
* @enc: the charset encoding if known
@@ -1547,7 +1556,7 @@ xmlOutputBufferFlush(xmlOutputBufferPtr out) {
return(ret);
}
-/*
+/**
* xmlParserGetDirectory:
* @filename: the path to a file
*
@@ -1596,7 +1605,7 @@ xmlParserGetDirectory(const char *filename) {
* *
****************************************************************/
-/*
+/**
* xmlDefaultExternalEntityLoader:
* @URL: the URL for the entity to load
* @ID: the System ID for the entity to load
@@ -1656,7 +1665,7 @@ xmlDefaultExternalEntityLoader(const char *URL, const char *ID,
static xmlExternalEntityLoader xmlCurrentExternalEntityLoader =
xmlDefaultExternalEntityLoader;
-/*
+/**
* xmlSetExternalEntityLoader:
* @f: the new entity resolver function
*
@@ -1667,7 +1676,7 @@ xmlSetExternalEntityLoader(xmlExternalEntityLoader f) {
xmlCurrentExternalEntityLoader = f;
}
-/*
+/**
* xmlGetExternalEntityLoader:
*
* Get the default external entity resolver function for the application
@@ -1679,7 +1688,7 @@ xmlGetExternalEntityLoader(void) {
return(xmlCurrentExternalEntityLoader);
}
-/*
+/**
* xmlLoadExternalEntity:
* @URL: the URL for the entity to load
* @ID: the System ID for the entity to load