X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilcutil%2Ftests%2Ftest_silchashtable.c;h=622fc4536647868c726adb791e0799f938224734;hb=9905799a86c606304fd7df2cd401de1740a272a1;hp=11ac71fc2c570003c30217d2c9402e5f6d637a27;hpb=0f0340b9fbce9704cc7171f8f0104ce9103d2de6;p=silc.git diff --git a/lib/silcutil/tests/test_silchashtable.c b/lib/silcutil/tests/test_silchashtable.c index 11ac71fc..622fc453 100644 --- a/lib/silcutil/tests/test_silchashtable.c +++ b/lib/silcutil/tests/test_silchashtable.c @@ -1,14 +1,14 @@ /* Hash table tests */ -#include "silcincludes.h" +#include "silc.h" typedef struct entry_struct { char name[8]; int val; } *entry; -bool dump = FALSE; -bool auto_rehash = TRUE; +SilcBool dump = FALSE; +SilcBool auto_rehash = TRUE; int count = 2000; SilcHashTable t = NULL; @@ -18,7 +18,7 @@ SilcUInt32 hash_entry(void *key, void *user_context) return e->val + silc_hash_string(e->name, NULL); } -bool hash_compare(void *key1, void *key2, void *user_context) +SilcBool hash_compare(void *key1, void *key2, void *user_context) { entry e = key1; entry e2 = key2; @@ -38,7 +38,7 @@ void hash_destructor(void *key, void *context, void *user_context) silc_free(e); } -bool add_entries() +SilcBool add_entries() { entry e; int i; @@ -49,7 +49,7 @@ bool add_entries() e = silc_calloc(1, sizeof(*e)); if (!e) return FALSE; - snprintf(e->name, sizeof(e->name), "%d", i); + silc_snprintf(e->name, sizeof(e->name), "%d", i); e->val = i; silc_hash_table_add(t, (void *)e, (void *)e->name); @@ -60,7 +60,7 @@ bool add_entries() return TRUE; } -bool del_entries_with_list() +SilcBool del_entries_with_list() { SilcHashTableList htl; entry e; @@ -90,7 +90,7 @@ void del_foreach(void *key, void *context, void *user_context) silc_hash_table_del(t, key); } -bool del_n_entries_foreach() +SilcBool del_n_entries_foreach() { struct entry_struct f; int i; @@ -99,7 +99,7 @@ bool del_n_entries_foreach() for (i = 0; i < count; i++) { memset(&f, 0, sizeof(f)); - snprintf(f.name, sizeof(f.name), "%d", i); + silc_snprintf(f.name, sizeof(f.name), "%d", i); f.val = i; silc_hash_table_find_foreach(t, &f, del_foreach, NULL); @@ -108,14 +108,14 @@ bool del_n_entries_foreach() return TRUE; } -bool del_entries_foreach() +SilcBool del_entries_foreach() { SILC_LOG_DEBUG(("Deleting all entries with foreach")); silc_hash_table_foreach(t, del_foreach, NULL); return TRUE; } -bool alloc_table() +SilcBool alloc_table() { SILC_LOG_DEBUG(("Allocating hash table with %d entries (%s)", count, auto_rehash ? "auto rehash" : "no auto rehash")); @@ -137,7 +137,7 @@ bool alloc_table() return TRUE; } -bool delete_table_with_list() +SilcBool delete_table_with_list() { SILC_LOG_DEBUG(("Deleting entries with SilcHashTableList")); @@ -158,7 +158,7 @@ bool delete_table_with_list() return TRUE; } -bool find_entries() +SilcBool find_entries() { struct entry_struct f; entry e; @@ -169,7 +169,7 @@ bool find_entries() for (i = 0; i < count; i++) { memset(&f, 0, sizeof(f)); - snprintf(f.name, sizeof(f.name), "%d", i); + silc_snprintf(f.name, sizeof(f.name), "%d", i); f.val = i; /* Find */ @@ -184,12 +184,12 @@ bool find_entries() return TRUE; } -bool dump_table() +SilcBool dump_table() { SilcHashTableList htl; entry e; char *name; - bool dumpped = FALSE; + SilcBool dumpped = FALSE; SILC_LOG_DEBUG(("Dumping hash table entries")); @@ -207,7 +207,7 @@ bool dump_table() int main(int argc, char **argv) { - bool success = FALSE; + SilcBool success = FALSE; int i; if (argc > 1 && !strcmp(argv[1], "-d")) {