hasht.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * hasht.h
  4.  *   hash table related functions that are not directly supported
  5.  *   under utils/hash.
  6.  *
  7.  *
  8.  * Copyright (c) 1994, Regents of the University of California
  9.  *
  10.  * $Id: hasht.h,v 1.7.2.1 1999/07/30 19:36:31 scrappy Exp $
  11.  *
  12.  *-------------------------------------------------------------------------
  13.  */
  14. #ifndef HASHT_H
  15. #define HASHT_H
  16. #include "utils/hsearch.h"
  17. typedef void (*HashtFunc) ();
  18. extern void HashTableWalk(HTAB *hashtable, HashtFunc function, int arg);
  19. #endif  /* HASHT_H */