8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3avl / avl_is_empty.3avl
blob693ec38b571d97351e48545e4a95b7aea2261b15
1 .\"
2 .\" This file and its contents are supplied under the terms of the
3 .\" Common Development and Distribution License ("CDDL"), version 1.0.
4 .\" You may only use this file in accordance with the terms of version
5 .\" 1.0 of the CDDL.
6 .\"
7 .\" A full copy of the text of the CDDL should have accompanied this
8 .\" source.  A copy of the CDDL is also available via the Internet at
9 .\" http://www.illumos.org/license/CDDL.
10 .\"
11 .\"
12 .\" Copyright 2015 Joyent, Inc.
13 .\"
14 .Dd May 07, 2015
15 .Dt AVL_IS_EMPTY 3AVL
16 .Os
17 .Sh NAME
18 .Nm avl_is_empty
19 .Nd determine if an AVL tree is empty
20 .Sh SYNOPSIS
21 .Lb libavl
22 .In sys/avl.h
23 .Ft boolean_t
24 .Fo avl_is_empty
25 .Fa "avl_tree_t *tree"
26 .Fc
27 .Sh DESCRIPTION
28 The
29 .Fn avl_is_empty
30 function is used to determine whether or not the AVL tree,
31 .Fa tree ,
32 is empty.
34 .Fa tree
35 has zero nodes in it, then
36 .Sy B_TRUE
37 is returned, otherwise
38 .Sy B_FALSE
39 is returned.
40 .Sh RETURN VALUES
41 The
42 .Fn avl_is_empty
43 function returns
44 .Sy B_TRUE
45 when there are no nodes in the tree and
46 .Sy B_FALSE
47 otherwise.
48 .Sh EXAMPLES
49 See the
50 .Sy EXAMPLES
51 section in
52 .Xr libavl 3LIB .
53 .Sh INTERFACE STABILITY
54 .Sy Committed
55 .Sh MT-Level
56 See
57 .Sx Locking
59 .Xr libavl 3LIB .
60 .Sh SEE ALSO
61 .Xr libavl 3LIB