| Line | |
|---|
| 1 | /* |
|---|
| 2 | * Prototypes for everything in fastxml_nodelist.c |
|---|
| 3 | * |
|---|
| 4 | * Please see the LICENSE file for copyright, licensing and distribution information |
|---|
| 5 | */ |
|---|
| 6 | |
|---|
| 7 | #ifndef fastxml_nodelist_h |
|---|
| 8 | #define fastxml_nodelist_h |
|---|
| 9 | |
|---|
| 10 | #define EMPTY_NODELIST -1 |
|---|
| 11 | #define EMPTY_NODESET -2 |
|---|
| 12 | |
|---|
| 13 | extern void Init_fastxml_nodelist(); |
|---|
| 14 | |
|---|
| 15 | RUBY_EXTERN VALUE fastxml_nodelist_initialize(VALUE self); |
|---|
| 16 | RUBY_EXTERN VALUE fastxml_nodelist_inspect(VALUE self); |
|---|
| 17 | RUBY_EXTERN VALUE fastxml_nodelist_length(VALUE self); |
|---|
| 18 | RUBY_EXTERN VALUE fastxml_nodelist_entry(VALUE self, long idx); |
|---|
| 19 | RUBY_EXTERN VALUE fastxml_nodelist_each(VALUE self); |
|---|
| 20 | RUBY_EXTERN VALUE fastxml_nodelist_to_ary(VALUE self); |
|---|
| 21 | #endif /*fastxml_nodelist_h*/ |
|---|