Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/rbtree-list @ 17428:4af247cb0aef
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Fri, 07 Jun 2013 06:44:05 -0700 |
parents | a8c91b846640 |
children |
rev | line source |
---|---|
6980
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 Sequential list data type implemented by a binary tree. |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Files: |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 lib/gl_rbtree_list.h |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 lib/gl_rbtree_list.c |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 lib/gl_anyrbtree_list1.h |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 lib/gl_anyrbtree_list2.h |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 lib/gl_anytree_list1.h |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 lib/gl_anytree_list2.h |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 Depends-on: |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 list |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
15 configure.ac: |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 Makefile.am: |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 lib_SOURCES += gl_rbtree_list.h gl_rbtree_list.c gl_anyrbtree_list1.h gl_anyrbtree_list2.h gl_anytree_list1.h gl_anytree_list2.h |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
20 Include: |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 "gl_rbtree_list.h" |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
22 |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 License: |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
24 GPL |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
25 |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 Maintainer: |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 Bruno Haible |
9ccb96800d02
Sequential list data type implemented by a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
28 |