mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
doc: Make apibuild.py work again
This commit is contained in:
11
HTMLparser.c
11
HTMLparser.c
@ -4268,6 +4268,13 @@ htmlParseElement(htmlParserCtxtPtr ctxt) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* htmlCtxtParseContentInternal:
|
||||
* @ctxt: parser context
|
||||
* @input: parser input
|
||||
*
|
||||
* Returns a node list.
|
||||
*/
|
||||
xmlNodePtr
|
||||
htmlCtxtParseContentInternal(htmlParserCtxtPtr ctxt, xmlParserInputPtr input) {
|
||||
xmlNodePtr root;
|
||||
@ -4694,7 +4701,7 @@ htmlCreateDocParserCtxt(const xmlChar *str, const char *url,
|
||||
* *
|
||||
************************************************************************/
|
||||
|
||||
enum xmlLookupStates {
|
||||
typedef enum {
|
||||
LSTATE_TAG_NAME = 0,
|
||||
LSTATE_BEFORE_ATTR_NAME,
|
||||
LSTATE_ATTR_NAME,
|
||||
@ -4703,7 +4710,7 @@ enum xmlLookupStates {
|
||||
LSTATE_ATTR_VALUE_DQUOTED,
|
||||
LSTATE_ATTR_VALUE_SQUOTED,
|
||||
LSTATE_ATTR_VALUE_UNQUOTED
|
||||
};
|
||||
} xmlLookupStates;
|
||||
|
||||
/**
|
||||
* htmlParseLookupGt:
|
||||
|
Reference in New Issue
Block a user