summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_btree.h
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/phpdbg/phpdbg_btree.h')
-rw-r--r--sapi/phpdbg/phpdbg_btree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg_btree.h b/sapi/phpdbg/phpdbg_btree.h
index 05fb6b833a..3eae81b997 100644
--- a/sapi/phpdbg/phpdbg_btree.h
+++ b/sapi/phpdbg/phpdbg_btree.h
@@ -37,6 +37,7 @@ union _phpdbg_btree_branch {
typedef struct {
zend_ulong count;
zend_ulong depth;
+ zend_bool persistent;
phpdbg_btree_branch *branch;
} phpdbg_btree;
@@ -47,6 +48,7 @@ typedef struct {
} phpdbg_btree_position;
void phpdbg_btree_init(phpdbg_btree *tree, zend_ulong depth);
+void phpdbg_btree_clean(phpdbg_btree *tree);
phpdbg_btree_result *phpdbg_btree_find(phpdbg_btree *tree, zend_ulong idx);
phpdbg_btree_result *phpdbg_btree_find_closest(phpdbg_btree *tree, zend_ulong idx);
phpdbg_btree_position phpdbg_btree_find_between(phpdbg_btree *tree, zend_ulong lower_idx, zend_ulong higher_idx);