You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Alexander Vdolainen ab2fe4ccc7 Added proper README. 9 years ago
debian Release 0.2.2: Added simple list to collection; 10 years ago
doc initial commit 10 years ago
examples initial commit 10 years ago
include fixes, now it's open source. 9 years ago
lib fixes, now it's open source. 9 years ago
.gitignore Release 0.2.2: Added simple list to collection; 10 years ago
AUTHORS fixes, now it's open source. 9 years ago
COPYING initial commit 10 years ago
COPYING.LGPL3 initial commit 10 years ago
ChangeLog initial commit 10 years ago
INSTALL initial commit 10 years ago
Makefile.am removed intl since it doesn't need. 10 years ago
NEWS initial commit 10 years ago
README Added proper README. 9 years ago
autogen.sh initial commit 10 years ago
configure.ac Release 0.2.2: Added simple list to collection; 10 years ago

README

1. What is that ?
this is a small C library with a collection of small useful stuff such as:
 * Index allocator
 * Linked list implementation, looks like a linux kernel one
 * Collection of the binary search tree implementation:
   * Btree
   * AVL
   * Red black
   * Splay

2. Is it useful ?
I hope yes, usually I have a lot of tools or applications to implement required 
to use index allocation, or some kind of structures to search within.
I guess it might be useful for everybody who looks the same thing (implement 
the same boring stuff each time isn't productive).

3. Is it stable ?
Yes, very stable. But if you will find a bug, please report me.
Actually it used in a lot of my projects (now most of them is a closed source), 
but I decide to make it open, anyway I should to do it, because initially 
it was LGPL'ed, and has a roots from my old open source project.

4. How to build ?

4.1. Just type ./autogen.sh, and you will have a configure script with a 
common autotools options.

4.2. To build the Debian package: debuild -i -us -uc -b

5. Are there new features coming ?
I hope so, will add a new features as soon as possible. But generally I don't
have any plans about it.