diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2001-07-18 19:30:27 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2001-07-18 19:30:27 +0000 |
commit | 5e2dace1ca6fbb023d1ce848d4e98deefbbfec31 (patch) | |
tree | 11c326472dc001b64ae56f165323934d72a95336 /xmlIO.c | |
parent | 8599e70dd39c4cdc3da79fdc07859c911381b00b (diff) | |
download | libxml2-5e2dace1ca6fbb023d1ce848d4e98deefbbfec31.tar.gz |
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.c | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -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 |