/*
 * hasht.h--
 *	hash table related functions that are not directly supported
 *	under utils/hash.
 *
 * Identification:
 *	/usr/local/devel/postgres-v4r2/src/backend/tmp/RCS/hasht.h,v 1.5 1994/01/29 12:57:04 aoki Exp
 *
 */

#ifndef	HashTIncluded		/* Include this file only once */
#define HashTIncluded	1

#include "utils/hsearch.h"

typedef void (*hasht_func)();

void HashTableWalk ARGS((HTAB *hashtable, hasht_func func, int arg));

#endif	/* !defined(HashTIncluded) */
