diff options
author | Nick Wellnhofer <[email protected]> | 2015-01-20 18:11:23 +0100 |
---|---|---|
committer | Nick Wellnhofer <[email protected]> | 2015-01-20 18:12:28 +0100 |
commit | 4b5e43c4fa9e18b7a281063a98fbef0def5a1cbe (patch) | |
tree | 63dd5f72e5ca537df9e5841b51b91ed93ed82b5a /src/iterator.c | |
parent | 040def592d73c7babf4634a0990e51de1a68d635 (diff) |
Accessor for iterator's root node
Diffstat (limited to 'src/iterator.c')
-rw-r--r-- | src/iterator.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/iterator.c b/src/iterator.c index 4daec2d..eb7b49c 100644 --- a/src/iterator.c +++ b/src/iterator.c @@ -108,6 +108,12 @@ cmark_iter_get_event_type(cmark_iter *iter) return iter->cur.ev_type; } +cmark_node* +cmark_iter_get_root(cmark_iter *iter) +{ + return iter->root; +} + void cmark_consolidate_text_nodes(cmark_node *root) { |