Sha256: 7fd035c7c4a112791def5a87560a282f0f05d7ffd43ce0198826216029b1c4a3
Contents?: true
Size: 562 Bytes
Versions: 8
Compression:
Stored size: 562 Bytes
Contents
/* $Id: ruby_xml_parser_context.h 319 2008-07-08 07:40:27Z cfis $ */ /* Please see the LICENSE file for copyright and distribution information */ #ifndef __RUBY_XML_PARSER_CONTEXT__ #define __RUBY_XML_PARSER_CONTEXT__ extern VALUE cXMLParserContext; typedef struct ruby_xml_parser_context { xmlParserCtxtPtr ctxt; int is_ptr; } ruby_xml_parser_context; void ruby_xml_parser_context_free(ruby_xml_parser_context *ctxt); void ruby_init_xml_parser_context(void); VALUE ruby_xml_parser_context_new(); VALUE ruby_xml_parser_context_each(VALUE self); #endif
Version data entries
8 entries across 8 versions & 1 rubygems