Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/rbtreehash-list @ 15333:f03da5e72c61
timespec-add, timespec-sub: new modules
* lib/timespec.h (timespec_add, timespec_sub): New decls.
* lib/timespec-add.c, lib/timespec-sub.c:
* modules/timespec-add, modules/timespec-sub: New files.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Thu, 30 Jun 2011 15:17:31 -0700 |
parents | a8c91b846640 |
children |
rev | line source |
---|---|
6981
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 Sequential list data type implemented by a hash table with a binary tree. |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Files: |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 lib/gl_rbtreehash_list.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 lib/gl_rbtreehash_list.c |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 lib/gl_anyhash_list1.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 lib/gl_anyhash_list2.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 lib/gl_anyrbtree_list1.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 lib/gl_anyrbtree_list2.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 lib/gl_anytree_list1.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 lib/gl_anytree_list2.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 lib/gl_anytreehash_list1.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 lib/gl_anytreehash_list2.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
15 |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 Depends-on: |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 list |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 rbtree-oset |
7383 | 19 stdint |
6981
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
20 xsize |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
22 configure.ac: |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
24 Makefile.am: |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
25 lib_SOURCES += gl_rbtreehash_list.h gl_rbtreehash_list.c gl_anyhash_list1.h gl_anyhash_list2.h gl_anyrbtree_list1.h gl_anyrbtree_list2.h gl_anytree_list1.h gl_anytree_list2.h gl_anytreehash_list1.h gl_anytreehash_list2.h |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 Include: |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
28 "gl_rbtreehash_list.h" |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
29 |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
30 License: |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
31 GPL |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
32 |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
33 Maintainer: |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
34 Bruno Haible |
0bc4f2ff0eae
Sequential list data type implemented by a hash table with a binary tree.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
35 |