aboutsummaryrefslogtreecommitdiffstats
path: root/HTMLparser.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-12-10 15:19:08 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-12-10 15:19:08 +0000
commit01c13b5be2d249ef66d86585adee87901bb8efa2 (patch)
tree4ccd7c73e107c3db83ae212ec163e6bc11b9f171 /HTMLparser.c
parente1ca50330b59d32b228ad9c05a874a96cef9748f (diff)
downloadandroid_external_libxml2-01c13b5be2d249ef66d86585adee87901bb8efa2.tar.gz
android_external_libxml2-01c13b5be2d249ef66d86585adee87901bb8efa2.tar.bz2
android_external_libxml2-01c13b5be2d249ef66d86585adee87901bb8efa2.zip
code cleanup, especially the function comments. fixed a small bug when
* DOCBparser.c HTMLparser.c c14n.c debugXML.c encoding.c hash.c nanoftp.c nanohttp.c parser.c parserInternals.c testC14N.c testDocbook.c threads.c tree.c valid.c xmlIO.c xmllint.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c xmlschemastypes.c xpath.c: code cleanup, especially the function comments. * tree.c: fixed a small bug when freeing nodes which are XInclude ones. Daniel
Diffstat (limited to 'HTMLparser.c')
-rw-r--r--HTMLparser.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/HTMLparser.c b/HTMLparser.c
index e846567c..7db3e9e3 100644
--- a/HTMLparser.c
+++ b/HTMLparser.c
@@ -2623,7 +2623,7 @@ htmlParseCharRef(htmlParserCtxtPtr ctxt) {
/**
- * htmlParseDocTypeDecl :
+ * htmlParseDocTypeDecl:
* @ctxt: an HTML parser context
*
* parse a DOCTYPE declaration
@@ -3544,7 +3544,7 @@ htmlParseElement(htmlParserCtxtPtr ctxt) {
}
/**
- * htmlParseDocument :
+ * htmlParseDocument:
* @ctxt: an HTML parser context
*
* parse an HTML document (and build a tree if using the standard SAX
@@ -3833,7 +3833,7 @@ htmlCreateMemoryParserCtxt(const char *buffer, int size) {
}
/**
- * htmlCreateDocParserCtxt :
+ * htmlCreateDocParserCtxt:
* @cur: a pointer to an array of xmlChar
* @encoding: a free form C string describing the HTML document encoding, or NULL
*
@@ -4491,7 +4491,7 @@ htmlParseTryOrFinish(htmlParserCtxtPtr ctxt, int terminate) {
} else {
/* TODO Avoid the extra copy, handle directly !!!!!! */
/*
- * Goal of the following test is :
+ * Goal of the following test is:
* - minimize calls to the SAX 'character' callback
* when they are mergeable
*/
@@ -4727,7 +4727,7 @@ htmlParseChunk(htmlParserCtxtPtr ctxt, const char *chunk, int size,
************************************************************************/
/**
- * htmlCreatePushParserCtxt :
+ * htmlCreatePushParserCtxt:
* @sax: a SAX handler
* @user_data: The user data returned on SAX callbacks
* @chunk: a pointer to an array of chars
@@ -4809,7 +4809,7 @@ htmlCreatePushParserCtxt(htmlSAXHandlerPtr sax, void *user_data,
}
/**
- * htmlSAXParseDoc :
+ * htmlSAXParseDoc:
* @cur: a pointer to an array of xmlChar
* @encoding: a free form C string describing the HTML document encoding, or NULL
* @sax: the SAX handler block
@@ -4852,7 +4852,7 @@ htmlSAXParseDoc(xmlChar *cur, const char *encoding, htmlSAXHandlerPtr sax, void
}
/**
- * htmlParseDoc :
+ * htmlParseDoc:
* @cur: a pointer to an array of xmlChar
* @encoding: a free form C string describing the HTML document encoding, or NULL
*
@@ -4868,7 +4868,7 @@ htmlParseDoc(xmlChar *cur, const char *encoding) {
/**
- * htmlCreateFileParserCtxt :
+ * htmlCreateFileParserCtxt:
* @filename: the filename
* @encoding: a free form C string describing the HTML document encoding, or NULL
*
@@ -4933,7 +4933,7 @@ htmlCreateFileParserCtxt(const char *filename, const char *encoding)
}
/**
- * htmlSAXParseFile :
+ * htmlSAXParseFile:
* @filename: the filename
* @encoding: a free form C string describing the HTML document encoding, or NULL
* @sax: the SAX handler block
@@ -4978,7 +4978,7 @@ htmlSAXParseFile(const char *filename, const char *encoding, htmlSAXHandlerPtr s
}
/**
- * htmlParseFile :
+ * htmlParseFile:
* @filename: the filename
* @encoding: a free form C string describing the HTML document encoding, or NULL
*