From 576cdb6e0b1274e9fa5276e01337aef330dd4e8c Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sat, 23 Nov 2002 19:56:30 +0000 Subject: 2002-11-23 Havoc Pennington * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN _DBUS_INT_MAX * dbus/dbus-test.c (main): add list test, and include dbus-test.h as intended * dbus/dbus-hash.c (_dbus_hash_table_remove_string) (_dbus_hash_table_remove_int): return value indicates whether the entry existed to remove * dbus/dbus-list.c: add linked list utility class, with docs and tests * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket array sometimes. --- dbus/dbus-hash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbus/dbus-hash.h') diff --git a/dbus/dbus-hash.h b/dbus/dbus-hash.h index b8136524..6c753a50 100644 --- a/dbus/dbus-hash.h +++ b/dbus/dbus-hash.h @@ -82,9 +82,9 @@ void* _dbus_hash_table_lookup_string (DBusHashTable *table, const char *key); void* _dbus_hash_table_lookup_int (DBusHashTable *table, int key); -void _dbus_hash_table_remove_string (DBusHashTable *table, +dbus_bool_t _dbus_hash_table_remove_string (DBusHashTable *table, const char *key); -void _dbus_hash_table_remove_int (DBusHashTable *table, +dbus_bool_t _dbus_hash_table_remove_int (DBusHashTable *table, int key); dbus_bool_t _dbus_hash_table_insert_string (DBusHashTable *table, char *key, -- cgit