version 0.6.3 (03/06/2006): 6/02/2006 Bob Rossi * src/ibuf.c (ibuf_trim): Change C++ comments to C comments. 5/20/2006 Bob Rossi * src/Makefile.am (ibuf_driver_LDFLAGS, ibuf_driver_LDADD, ibuf_driver_DEPENDENCIES, std_hash_driver_LDFLAGS, std_hash_driver_LDFLAGS, std_hash_driver_DEPENDENCIES, std_list_driver_LDFLAGS, std_list_driver_LDADD, std_list_driver_DEPENDENCIES, std_btree_driver_LDFLAGS, std_btree_driver_LDADD, std_btree_driver_DEPENDENCIES, std_bbtree_driver_LDFLAGS, std_bbtree_driver_LDADD, std_bbtree_driver_DEPENDENCIES): Add libutil to adt dependencies. 5/07/2006 Bob Rossi * src/ibuf_driver.c (config.h, string.h): Add #include. (stdio.h): Add #if HAVE_STDIO_H defines. version 0.6.2 (04/09/2006): 4/05/2006 Bob Rossi * Makefile.in: Autogenerated. * src/Makefile.in: Autogenerated. version 0.6.1 (03/06/2006): version 0.6.0 (01/30/2006): 1/19/2006 Bob Rossi * Makefile.in: Autogenerated. * src/Makefile.in: Ditto. 1/14/2006 Bob Rossi * Makefile.in: Autogenerated. * src/Makefile.in: Ditto. 09/30/2005 Bob Rossi * include/tgdb_list.h (tgdb_list_destroy): Add function. * src/tgdb_list.c (tgdb_list_destroy): Ditto. version 0.5.3 (08/08/2005): 08/02/2005 Bob Rossi * Makefile.in: Autogenerated. * src/Makefile.in: Ditto. 08/02/2005 Bob Rossi * Makefile.in: Autogenerated. * src/Makefile.in: Ditto. 07/13/2005 Bob Rossi * Makefile.in: Autogenerated. * src/Makefile.in: Ditto. version 0.5.2 (05/21/2005): 05/21/2004 Bob Rossi * src/Makefile.am (AM_CFLAGS): Changed relative paths to top_srcdir. (noinst_bin_PROGRAMS): Removed. (noinst_bindir): Removed. (noinst_PROGRAMS): Added. (std_hash_driver_DEPENDENCIES): Changed relative path to top_builddir. (std_list_driver_DEPENDENCIES): Ditto. (std_btree_driver_DEPENDENCIES): Ditto. (std_bbtree_driver_DEPENDENCIES): Ditto. * src/Makefile.in: Autogenerated. version 0.5.1 (04/02/2005): version 0.5.0 (07/14/2004): 07/14/2004 Bob Rossi * src/Makefile.am (noinst_bindir): changed top_srcdir to top_builddir version 0.4.2 (05/10/2004): version 0.4.1 (04/26/2004): 04/06/2004 Bob Rossi * std_list.c (std_list_remove): Fixed bug in remove function. 03/25/2004 Bob Rossi * std_types.h (STDDestroyNotify): Changed return value from void to int. * std_hash.c: udpate function for change above * std_list_driver.c: Ditto 03/22/2004 Bob Rossi * std_list.h: Fully doxygenized. * std_list.c: Ditto 03/22/2004 Bob Rossi * std_list.c: Documented std_list_node and std_list. 03/18/2004 Bob Rossi * include/std_list.h: Wrote from scratch. Forget Glib. * src/std_list.c: Ditto * src/std_list_driver.c: Ditto * include/std_types.h (STDFunc): change return type from void to int 03/16/2004 Bob Rossi * src/Makefile.am: Add tgdb_list.c, std_hash.c, std_tree.c to libadt. Build std_hash_driver,std_list_driver and std_tree_driver to test them. * src/Makefile.in: Auto generated for people without auto tools. * std_types.h: Ditto * std_hash.h: Added * std_hash.c: Ditto * std_hash_driver.c: Ditto * std_list.h: Ditto * std_list.c: Ditto * std_list_driver.c: Ditto * std_tree.h: Ditto * std_tree.c: Ditto * std_tree_driver.c: Ditto 01/08/2004 Bob Rossi * Makefile.in: regenerated with documented autotools version * src/Makefile.in: ditto version 0.4.0-1 cygwin release 12/03/2003 Ronald Landheer-Cieslak * Makefile.in: re-generated * src/Makefile.in: ditto * src/Makefile.am: set include path relative to source tree version 0.4.0 (10/28/2003): 10/23/2003 Bob Rossi * tgdb_list.h: add tgdb_list_clear prototype * tgdb_list.c: add tgdb_list_clear implementation 10/13/2003 Bob Rossi * ibuf.h: rename 'struct string' to 'string ibuf' Change all function names using 'string' to 'ibuf'. * ibuf.c: ditto 09/25/2003 Bob Rossi * ibuf.h: Add new function 'string_dup' and comment * ibuf.c: Implement new function. 09/24/2003 Bob Rossi * tgdb_list.h: Add 'struct tgdb_list_node' forward reference. change 'tgdb_list_func' to return an int. tgdb_list_init, better comment for return value. tgdb_list_append, tgdb_list_prepend,tgdb_list_insert_after, tgdb_list_insert_before, tgdb_list_foreach, tgdb_list_free, change return type from void to int and add comment. tgdb_list_insert_after, tgdb_list_insert_before, changed tgdb_list_iterator parameter to pass a pointer. tgdb_list_size, update comment describing return value. tgdb_list_get_first, tgdb_list_get_last, returns a iterator pointer instead of an int. tgdb_list_next, tgdb_list_previous, change return value to iterator pointer, change comment, change parameter to pointer. tgdb_list_get_item, changed parameter to pointer * tgdb_list.c: Implement prototype changes. tgdb_list_free, call tgdb_list_get_first in loop instead of tgdb_list_next on iterator. 09/23/2003 Bob Rossi * tgdb_list.c: tgdb_list_insert, move special case to top of cases. tgdb_list_delete, remove call to free user's data. 09/23/2003 Bob Rossi * tgdb_list.h: Added tgdb_list_iterator_init, tgdb_list_iterator_free * tgdb_list.c: ditto tgdb_list_foreach, tgdb_list_free, changed to use new iterator 09/23/2003 Bob Rossi * tgdb_list.h: global item_func, changed name to tgdb_list_func tgdb_list_foreach, tgdb_list_free, updateing for new typedef name tgdb_get_item, changed to tgdb_list_get_item * tgdb_list.c: tgdb_list_node, moved member named data to bottom of struct. tgdb_list_foreach, tgdb_list_free, ditto tgdb_get_item, ditto 09/23/2003 Bob Rossi * tgdb_list.h: Add new doubly linked list interface * tgdb_list.c: Add new doubly linked list implementation 09/17/2003 Bob Rossi * queue.h: Removed queue_iterator_init,queue_iterator_free, queue_iterator_reset, queue_iterator_forward,queue_iterator_end_of_list, queue_iterator_get_item and global 'struct queue_iterator' * queue.c: ditto ( definitions ) 08/19/2003 Bob Rossi * ibuf.c: added #include version 0.3.4 (08/14/2003): version 0.3.3a (07/16/2003): version 0.3.3 (07/15/2003): version 0.3.2 (06/25/2003): 06/04/2003 Bob Rossi * queue.h: Added queue_iterator_init,queue_iterator_free, queue_iterator_reset,queue_iterator_forward,queue_iterator_end_of_list, queue_iterator_get_item and struct queue_iterator * queue.c: implemented functions above.