blob: ddeab3f3a8c31cfff3e891778b944cc59aaed2eb [file] [log] [blame]
Willy Tarreaue6d2e4d2007-11-15 23:56:17 +01001/*
2 * Elastic Binary Trees - exported functions for operations on 64bit nodes.
3 * (C) 2002-2007 - Willy Tarreau <w@1wt.eu>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20/* Consult eb64tree.h for more details about those functions */
21
22#include <common/eb64tree.h>
23
24REGPRM2 struct eb64_node *eb64_insert(struct eb_root *root, struct eb64_node *new)
25{
26 return __eb64_insert(root, new);
27}
28
29REGPRM2 struct eb64_node *eb64i_insert(struct eb_root *root, struct eb64_node *new)
30{
31 return __eb64i_insert(root, new);
32}
33
34REGPRM2 struct eb64_node *eb64_lookup(struct eb_root *root, u64 x)
35{
36 return __eb64_lookup(root, x);
37}
38
39REGPRM2 struct eb64_node *eb64i_lookup(struct eb_root *root, s64 x)
40{
41 return __eb64i_lookup(root, x);
42}