Sha256: 7d6596ce600cdb873fe3a352288e6878cdedf7d93ccdf9a6c3530739268bb61a

Contents?: true

Size: 779 Bytes

Versions: 2

Compression:

Stored size: 779 Bytes

Contents

/* $Id: ruby_xml_html_parser.h 225 2007-12-07 04:58:09Z transami $ */

/* Please see the LICENSE file for copyright and distribution information */

#ifndef __RUBY_XML_HTML_PARSER__
#define __RUBY_XML_HTML_PARSER__

extern int ruby_xml_html_parser_count;
extern VALUE cXMLHTMLParser;

typedef struct ruby_xml_html_parser {
  VALUE ctxt;
  int parsed;
  void *data;
  int data_type;
} ruby_xml_html_parser;

/*
 * VALUE ruby_xml_html_parser_filename_get(VALUE self);
VALUE ruby_xml_html_parser_filename_set(VALUE self, VALUE filename);
VALUE ruby_xml_html_parser_new(VALUE class);
*/
VALUE ruby_xml_html_parser_parse(VALUE self);
VALUE ruby_xml_html_parser_str_get(VALUE self);
VALUE ruby_xml_html_parser_str_set(VALUE self, VALUE str);

void ruby_init_html_parser(void);

#endif

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
libxml-ruby-0.5.3 ext/libxml/ruby_xml_html_parser.h
libxml-ruby-0.5.4 ext/libxml/ruby_xml_html_parser.h