home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / include / hash.h < prev    next >
C/C++ Source or Header  |  1991-11-07  |  329b  |  15 lines

  1. /*
  2.  * general-purpose in-core hashing, normal interface
  3.  */
  4.  
  5. typedef char *HASHDATUM;            /* #define won't do due to * */
  6.  
  7. #ifndef HASHTABLE
  8. #define HASHTABLE struct hashtable
  9. #endif
  10.  
  11. extern HASHTABLE *hashcreate();
  12. extern hashdestroy(), hashwalk();
  13. extern int hashstore(), hashdelete();
  14. extern HASHDATUM hashfetch(), hashentry();
  15.