~john-koepi/ubuntu/trusty/golang/default

« back to all changes in this revision

Viewing changes to src/cmd/cov/tree.h

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-04-20 17:36:48 UTC
  • Revision ID: james.westby@ubuntu.com-20110420173648-ifergoxyrm832trd
Tags: upstream-2011.03.07.1
Import upstream version 2011.03.07.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Renamed from Map to Tree to avoid conflict with libmach.
 
2
 
 
3
/*
 
4
Copyright (c) 2003-2007 Russ Cox, Tom Bergan, Austin Clements,
 
5
                        Massachusetts Institute of Technology
 
6
Portions Copyright (c) 2009 The Go Authors. All rights reserved.
 
7
 
 
8
Permission is hereby granted, free of charge, to any person obtaining
 
9
a copy of this software and associated documentation files (the
 
10
"Software"), to deal in the Software without restriction, including
 
11
without limitation the rights to use, copy, modify, merge, publish,
 
12
distribute, sublicense, and/or sell copies of the Software, and to
 
13
permit persons to whom the Software is furnished to do so, subject to
 
14
the following conditions:
 
15
 
 
16
The above copyright notice and this permission notice shall be
 
17
included in all copies or substantial portions of the Software.
 
18
 
 
19
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
20
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
21
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
22
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
23
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
24
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
25
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
26
*/
 
27
 
 
28
typedef struct Tree Tree;
 
29
typedef struct TreeNode TreeNode;
 
30
struct Tree
 
31
{
 
32
        int (*cmp)(void*, void*);
 
33
        TreeNode *root;
 
34
};
 
35
 
 
36
struct TreeNode
 
37
{
 
38
        int color;
 
39
        TreeNode *left;
 
40
        void *key;
 
41
        void *value;
 
42
        TreeNode *right;
 
43
};
 
44
 
 
45
void *treeget(Tree*, void*);
 
46
void treeput(Tree*, void*, void*);
 
47
void treeputelem(Tree*, void*, void*, TreeNode*);