X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=buffer_tree.h;h=589bde2779d5baeb43b15fbfaeeca952ac59b018;hb=81f6ec36f467795d7f17fcc669395f8a5d1223bb;hp=27f5da2fb9d971c16279a981ef5525372e23f5f6;hpb=e4713d70469e7ca1afd8e8b9a3e67c3764cf3933;p=paraslash.git diff --git a/buffer_tree.h b/buffer_tree.h index 27f5da2f..589bde27 100644 --- a/buffer_tree.h +++ b/buffer_tree.h @@ -4,7 +4,7 @@ struct btr_node; typedef int (*btr_command_handler)(struct btr_node *btrn, const char *command, char **result); -struct btr_node *btr_new_node(char *name, struct btr_node *parent, +struct btr_node *btr_new_node(const char *name, struct btr_node *parent, btr_command_handler handler, void *context); void btr_del_node(struct btr_node *btrn); void btr_add_output(char *buf, size_t size, struct btr_node *btrn); @@ -16,6 +16,8 @@ size_t btr_next_buffer(struct btr_node *btrn, char **bufp); void btr_consume(struct btr_node *btrn, size_t numbytes); int btr_exec(struct btr_node *btrn, const char *command, char **value_result); int btr_exec_up(struct btr_node *btrn, const char *command, char **value_result); -int btr_splice_out_node(struct btr_node *btrn); +void btr_splice_out_node(struct btr_node *btrn); void btr_pushdown(struct btr_node *btrn); void *btr_context(struct btr_node *btrn); +void btr_merge(struct btr_node *btrn, size_t dest_size); +bool btr_eof(struct btr_node *btrn);