diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-09-22 13:12:12 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-09-22 13:12:12 +0100 |
commit | d0752e8b08d37395fd036046552fa6b4fb92ac17 (patch) | |
tree | 7e572ef12d0a59d4f497aa98be389d13e668f48e /lib/xmltree.h | |
parent | 55ccc9a0dffdc96b7a5c6d41de2e97d2cd1741d9 (diff) |
Little cleanup. Use xt_from_string() where possible.
Diffstat (limited to 'lib/xmltree.h')
-rw-r--r-- | lib/xmltree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmltree.h b/lib/xmltree.h index 5a0dbc8e..ac77fada 100644 --- a/lib/xmltree.h +++ b/lib/xmltree.h @@ -81,7 +81,7 @@ void xt_reset( struct xt_parser *xt ); int xt_feed( struct xt_parser *xt, const char *text, int text_len ); int xt_handle( struct xt_parser *xt, struct xt_node *node, int depth ); void xt_cleanup( struct xt_parser *xt, struct xt_node *node, int depth ); -struct xt_node *xt_from_string( const char *in ); +struct xt_node *xt_from_string( const char *in, int text_len ); char *xt_to_string( struct xt_node *node ); void xt_print( struct xt_node *node ); struct xt_node *xt_dup( struct xt_node *node ); |