From 6a6fe949ef4bcd7397e4a64ae70417a49246491e Mon Sep 17 00:00:00 2001 From: tomo Date: Fri, 3 Oct 2003 03:38:04 +0000 Subject: [PATCH] Modify to avoid warning. --- name.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/name.c b/name.c index 607f006..2e88798 100644 --- a/name.c +++ b/name.c @@ -1,4 +1,5 @@ #include +#include #include "chise-name.h" struct CHISE_HASH_TABLE_ENTRY @@ -13,6 +14,10 @@ struct CHISE_HASH_TABLE CHISE_HASH_TABLE_ENTRY *data; }; +CHISE_HASH_TABLE* chise_make_hash_table (size_t size); +void chise_destroy_hash_table (CHISE_HASH_TABLE* hash); +int chise_hash_c_string (const unsigned char *ptr); + CHISE_HASH_TABLE* chise_make_hash_table (size_t size) { -- 1.7.10.4