skalibs
Software
www.skarnet.org
The datastruct library interface
libdatastruct implements generic data structures like chained
lists and AVL trees, in a memory-efficient way.
Compiling
- Add /package/prog/skalibs/include, or wherever you installed
your header files, to your header directory list
- Use #include "datastruct.h"
Linking
- For static linking: add /package/prog/skalibs/library,
or wherever you installed your .a files, to your library directory list.
- For dynamic linking: add /package/prog/skalibs/library.so,
or wherever you installed your .so files, to your library directory list -
and make sure to properly edit your ld.so.conf file and to run
ldconfig if needed.
- Link with -ldatastruct -lstddjb
Programming
FIXME: to be completed.