1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#ifdef __cplusplus
extern "C"
#endif
XS(boot_HTML__Parser)
{
dXSARGS;
char* file = __FILE__;
XS_VERSION_BOOTCHECK ;
LIGNE 778
{
CV * cv ;
newXS("HTML::Parser::_alloc_pstate", XS_HTML__Parser__alloc_pstate, file);
newXS("HTML::Parser::parse", XS_HTML__Parser_parse, file);
newXS("HTML::Parser::eof", XS_HTML__Parser_eof, file);
cv = newXS("HTML::Parser::empty_element_tags", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 11 ;
cv = newXS("HTML::Parser::closing_plaintext", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 9 ;
cv = newXS("HTML::Parser::unbroken_text", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 4 ;
cv = newXS("HTML::Parser::utf8_mode", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 10 ;
cv = newXS("HTML::Parser::marked_sections", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 5 ;
cv = newXS("HTML::Parser::strict_comment", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 1 ;
cv = newXS("HTML::Parser::xml_pic", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 12 ;
cv = newXS("HTML::Parser::attr_encoded", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 6 ;
cv = newXS("HTML::Parser::strict_names", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 2 ;
cv = newXS("HTML::Parser::backquote", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 13 ;
cv = newXS("HTML::Parser::strict_end", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 8 ;
cv = newXS("HTML::Parser::xml_mode", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 3 ;
cv = newXS("HTML::Parser::case_sensitive", XS_HTML__Parser_strict_comment, file);
XSANY.any_i32 = 7 ;
newXS("HTML::Parser::boolean_attribute_value", XS_HTML__Parser_boolean_attribute_value, file);
cv = newXS("HTML::Parser::report_tags", XS_HTML__Parser_ignore_tags, file);
XSANY.any_i32 = 1 ;
cv = newXS("HTML::Parser::ignore_elements", XS_HTML__Parser_ignore_tags, file);
XSANY.any_i32 = 3 ;
cv = newXS("HTML::Parser::ignore_tags", XS_HTML__Parser_ignore_tags, file);
XSANY.any_i32 = 2 ;
newXS("HTML::Parser::handler", XS_HTML__Parser_handler, file);
newXS("HTML::Entities::decode_entities", XS_HTML__Entities_decode_entities, file);
newXS("HTML::Entities::_decode_entities", XS_HTML__Entities__decode_entities, file);
newXS("HTML::Entities::_probably_utf8_chunk", XS_HTML__Entities__probably_utf8_chunk, file);
newXSproto("HTML::Entities::UNICODE_SUPPORT", XS_HTML__Entities_UNICODE_SUPPORT, file, "");
}
ST(0) = &sv_yes;
XSRETURN(1);
} |