#include <string.h>
+#include <stdlib.h>
#include "chise-name.h"
struct CHISE_HASH_TABLE_ENTRY
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)
{