Sha256: 5b0e31ee1da37740725f47b14c0bc8dba28db43fde0d5867d309200d3f3efc2f
Contents?: true
Size: 1.24 KB
Versions: 7
Compression:
Stored size: 1.24 KB
Contents
#ifndef NOKOGIRI_NATIVE #define NOKOGIRI_NATIVE #include <stdlib.h> #include <assert.h> #include <ruby.h> #include <libxml/parser.h> #include <libxml/xpath.h> #include <libxml/xpathInternals.h> #include <libxml/xmlreader.h> #include <libxml/HTMLparser.h> #include <libxml/HTMLtree.h> #include <xml_io.h> #include <xml_document.h> #include <html_document.h> #include <xml_node.h> #include <xml_text.h> #include <xml_cdata.h> #include <xml_comment.h> #include <xml_node_set.h> #include <xml_xpath.h> #include <xml_dtd.h> #include <xml_xpath_context.h> #include <xml_sax_parser.h> #include <xml_reader.h> #include <html_sax_parser.h> #include <xslt_stylesheet.h> #include <xml_syntax_error.h> extern VALUE mNokogiri ; extern VALUE mNokogiriXml ; extern VALUE mNokogiriXmlSax ; extern VALUE mNokogiriHtml ; extern VALUE mNokogiriHtmlSax ; extern VALUE mNokogiriXslt ; #ifdef DEBUG #define NOKOGIRI_DEBUG_START(p) if (getenv("NOKOGIRI_NO_FREE")) return ; if (getenv("NOKOGIRI_DEBUG")) fprintf(stderr,"nokogiri: %s:%d %p start\n", __FILE__, __LINE__, p); #define NOKOGIRI_DEBUG_END(p) if (getenv("NOKOGIRI_DEBUG")) fprintf(stderr,"nokogiri: %s:%d %p end\n", __FILE__, __LINE__, p); #else #define NOKOGIRI_DEBUG_START(p) #define NOKOGIRI_DEBUG_END(p) #endif #endif
Version data entries
7 entries across 7 versions & 1 rubygems