pike.git
/
src
/
post_modules
/
CritBit
/
tree_low.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/post_modules/CritBit/tree_low.c:352:
return node; } break; } if (tree) cb_check_node(tree); return NULL; }
-
CB_STATIC CB_INLINE cb_node_t cb_find_next(const cb_node_t tree, const cb_key key) {
+
CB_STATIC CB_INLINE cb_node_t cb_find_next(const cb_node_t tree,
+
const cb_key key) {
cb_size size; size_t bit; cb_node_t node; size.bits = size.chars = 0; /* index is cheap. also in many cases its quite likely that we */ /* hit. */ node = cb_index(tree, key); if (node) {