diff options
author | Bruno Haible <bruno@clisp.org> | 2006-07-17 11:30:58 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2006-07-17 11:30:58 +0000 |
commit | e21bb106b335e1ac02c02ef4e6e9ad29db744667 (patch) | |
tree | 86ca753266945fb3d7f2463d895dbc200cc1d07e /modules/avltree-list | |
parent | 72f1dc222e2a295a3c819d3f5eb89b80ccf52074 (diff) | |
download | gnulib-e21bb106b335e1ac02c02ef4e6e9ad29db744667.tar.gz |
Sequential list data type implemented by a binary tree.
Diffstat (limited to 'modules/avltree-list')
-rw-r--r-- | modules/avltree-list | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/avltree-list b/modules/avltree-list new file mode 100644 index 0000000000..7ef1413b9a --- /dev/null +++ b/modules/avltree-list @@ -0,0 +1,29 @@ +Description: +Sequential list data type implemented by a binary tree. + +Files: +lib/gl_avltree_list.h +lib/gl_avltree_list.c +lib/gl_anyavltree_list1.h +lib/gl_anyavltree_list2.h +lib/gl_anytree_list1.h +lib/gl_anytree_list2.h + +Depends-on: +list +xalloc + +configure.ac: + +Makefile.am: +lib_SOURCES += gl_avltree_list.h gl_avltree_list.c gl_anyavltree_list1.h gl_anyavltree_list2.h gl_anytree_list1.h gl_anytree_list2.h + +Include: +"gl_avltree_list.h" + +License: +GPL + +Maintainer: +Bruno Haible + |