1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

cleanup some static declarations Daniel

* HTMLtree.c valid.c: cleanup some static declarations
Daniel
This commit is contained in:
Daniel Veillard
2001-12-13 14:55:21 +00:00
parent 9ae4b7afa9
commit 86fd5a7671
3 changed files with 9 additions and 5 deletions

View File

@ -297,6 +297,9 @@ found_meta:
static void
htmlDocContentDump(xmlBufferPtr buf, xmlDocPtr cur, int format);
static void
htmlNodeDumpFormat(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur,
int format);
/**
* htmlDtdDump:
@ -395,9 +398,6 @@ htmlAttrListDump(xmlBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur, int format) {
}
}
static void
htmlNodeDumpFormat(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int format);
/**
* htmlNodeListDump:
* @buf: the HTML buffer output
@ -428,7 +428,7 @@ htmlNodeListDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int format) {
*
* Dump an HTML node, recursive behaviour,children are printed too.
*/
void
static void
htmlNodeDumpFormat(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur,
int format) {
const htmlElemDesc * info;