mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
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
This commit is contained in:
19
xmlIO.c
19
xmlIO.c
@ -863,6 +863,15 @@ xmlOutputBufferClose(xmlOutputBufferPtr out) {
|
||||
return(written);
|
||||
}
|
||||
|
||||
/**
|
||||
* 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
|
||||
@ -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
|
||||
|
Reference in New Issue
Block a user