00001 /*! \file hashfunc.h 00002 Header file for hashfunc.c. 00003 */ 00004 00005 #ifdef __cplusplus 00006 extern "C" { 00007 #endif 00008 00009 00010 #ifndef HASHFUNC_HDD 00011 00012 typedef unsigned int Index; 00013 Index Hash1( const char *Key, int TableSize ); 00014 Index Hash2( const char *Key, int TableSize ); 00015 Index Hash3( const char *Key, int TableSize ); 00016 00017 #define HASHFUNC_HDD 00018 #endif 00019 00020 #ifdef __cplusplus 00021 } 00022 #endif