]> git.ipfire.org Git - thirdparty/gcc.git/blame - include/ternary.h
* cp-demangle.c (demangle_v3_with_details,
[thirdparty/gcc.git] / include / ternary.h
CommitLineData
eec19420 1/* ternary.h - Ternary Search Trees
2 Copyright 2001 Free Software Foundation, Inc.
3
4 Contributed by Daniel Berlin (dan@cgsoftware.com)
5
6
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
10 later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 USA. */
21#ifndef TERNARY_H_
22#define TERNARY_H_
23/* Ternary search trees */
24
25typedef struct ternary_node_def *ternary_tree;
26
27typedef struct ternary_node_def
28{
29 char splitchar;
30 ternary_tree lokid;
31 ternary_tree eqkid;
32 ternary_tree hikid;
33}
34ternary_node;
35
36/* Insert string S into tree P, associating it with DATA.
37 Return the data in the tree associated with the string if it's
38 already there, and replace is 0.
39 Otherwise, replaces if it it exists, inserts if it doesn't, and
40 returns the data you passed in. */
e5f55ef4 41PTR ternary_insert PARAMS ((ternary_tree *p, const char *s,
42 PTR data, int replace));
eec19420 43
44/* Delete the ternary search tree rooted at P.
45 Does NOT delete the data you associated with the strings. */
e5f55ef4 46void ternary_cleanup PARAMS ((ternary_tree p));
eec19420 47
48/* Search the ternary tree for string S, returning the data associated
49 with it if found. */
e5f55ef4 50PTR ternary_search PARAMS ((const ternary_node *p, const char *s));
eec19420 51#endif