home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre3.z / postgre3 / src / lib / H / tmp / hasht.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  442 b   |  19 lines

  1. /*
  2.  * hasht.h--
  3.  *    hash table related functions that are not directly supported
  4.  *    under utils/hash.
  5.  *
  6.  * Identification:
  7.  *    $Header: /private/postgres/src/lib/H/tmp/RCS/hasht.h,v 1.4 1991/11/14 14:56:26 jolly Exp $
  8.  *
  9.  */
  10.  
  11. #ifndef    HashTIncluded        /* Include this file only once */
  12. #define HashTIncluded    1
  13.  
  14. #include "utils/hsearch.h"
  15.  
  16. void HashTableWalk ARGS((HTAB *hashtable, void (*func)(), int arg));
  17.  
  18. #endif    /* !defined(HashTIncluded) */
  19.