annotate lib/gl_avltree_oset.h @ 9084:2932e92d6e31

* lib/version-etc.c (version_etc_va): Default to GPLv3+. * NEWS: Document this change.
author Eric Blake <ebb9@byu.net>
date Tue, 10 Jul 2007 12:22:36 +0000
parents d88d781b8e7b
children bbbbbf4cd1c5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6982
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Ordered set data type implemented by a binary tree.
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 Copyright (C) 2006 Free Software Foundation, Inc.
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 Written by Bruno Haible <bruno@clisp.org>, 2006.
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 This program is free software; you can redistribute it and/or modify
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 it under the terms of the GNU General Public License as published by
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 the Free Software Foundation; either version 2, or (at your option)
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 any later version.
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 GNU General Public License for more details.
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 You should have received a copy of the GNU General Public License
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16 along with this program; if not, write to the Free Software Foundation,
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 #ifndef _GL_AVLTREE_OSET_H
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 #define _GL_AVLTREE_OSET_H
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 #include "gl_oset.h"
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 #ifdef __cplusplus
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 extern "C" {
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 #endif
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 extern const struct gl_oset_implementation gl_avltree_oset_implementation;
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 #define GL_AVLTREE_OSET &gl_avltree_oset_implementation
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 #ifdef __cplusplus
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 }
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 #endif
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34
d88d781b8e7b Ordered set data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 #endif /* _GL_AVLTREE_OSET_H */