summaryrefslogtreecommitdiff
path: root/HTMLtree.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-12-13 14:55:21 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-12-13 14:55:21 +0000
commit86fd5a7671f3d9c16965eef6a2ade4e1186a1969 (patch)
treec2f90db6a4ffbd8525c426a5e422b23ff7994032 /HTMLtree.c
parent9ae4b7afa98d1904d786f5e10db49ada8a2945ad (diff)
downloadlibxml2-86fd5a7671f3d9c16965eef6a2ade4e1186a1969.tar.gz
cleanup some static declarations Daniel
* HTMLtree.c valid.c: cleanup some static declarations Daniel
Diffstat (limited to 'HTMLtree.c')
-rw-r--r--HTMLtree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/HTMLtree.c b/HTMLtree.c
index cb5f3080..c122ff24 100644
--- a/HTMLtree.c
+++ b/HTMLtree.c
@@ -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;