aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/support
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-05-07 16:18:43 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-05-07 16:18:43 -0700
commit1c51edc4bc7e44883e5acc3942104fafe35099c6 (patch)
tree2e2b9d4cfbde2475d858d0cc73f899ffa7c22814 /include/grpc/support
parent1aee5362f43ece8eb77ba219c163f1169d0d0b24 (diff)
Progress converting to new error system
Diffstat (limited to 'include/grpc/support')
-rw-r--r--include/grpc/support/avl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/grpc/support/avl.h b/include/grpc/support/avl.h
index d71592dcbc..7e8e6378f7 100644
--- a/include/grpc/support/avl.h
+++ b/include/grpc/support/avl.h
@@ -88,5 +88,7 @@ GPRAPI gpr_avl gpr_avl_remove(gpr_avl avl, void *key);
does not mutate avl.
returns NULL if key is not found. */
GPRAPI void *gpr_avl_get(gpr_avl avl, void *key);
+/** Return 1 if avl is empty, 0 otherwise */
+GPRAPI int gpr_avl_is_empty(gpr_avl avl);
#endif /* GRPC_SUPPORT_AVL_H */