1: /* $Header: hash.h,v 1.0 87/12/18 13:05:20 root Exp $
   2:  *
   3:  * $Log:	hash.h,v $
   4:  * Revision 1.0  87/12/18  13:05:20  root
   5:  * Initial revision
   6:  *
   7:  */
   8: 
   9: #define FILLPCT 60      /* don't make greater than 99 */
  10: 
  11: #ifdef DOINIT
  12: char coeff[] = {
  13:         61,59,53,47,43,41,37,31,29,23,17,13,11,7,3,1,
  14:         61,59,53,47,43,41,37,31,29,23,17,13,11,7,3,1,
  15:         61,59,53,47,43,41,37,31,29,23,17,13,11,7,3,1,
  16:         61,59,53,47,43,41,37,31,29,23,17,13,11,7,3,1,
  17:         61,59,53,47,43,41,37,31,29,23,17,13,11,7,3,1,
  18:         61,59,53,47,43,41,37,31,29,23,17,13,11,7,3,1,
  19:         61,59,53,47,43,41,37,31,29,23,17,13,11,7,3,1,
  20:         61,59,53,47,43,41,37,31,29,23,17,13,11,7,3,1};
  21: #else
  22: extern char coeff[];
  23: #endif
  24: 
  25: typedef struct hentry HENT;
  26: 
  27: struct hentry {
  28:     HENT    *hent_next;
  29:     char    *hent_key;
  30:     STR     *hent_val;
  31:     int     hent_hash;
  32: };
  33: 
  34: struct htbl {
  35:     HENT    **tbl_array;
  36:     int     tbl_max;
  37:     int     tbl_fill;
  38:     int     tbl_riter;  /* current root of iterator */
  39:     HENT    *tbl_eiter; /* current entry of iterator */
  40: };
  41: 
  42: STR *hfetch();
  43: bool hstore();
  44: bool hdelete();
  45: HASH *hnew();
  46: int hiterinit();
  47: HENT *hiternext();
  48: char *hiterkey();
  49: STR *hiterval();

Defined variables

coeff declared in line 22; defined in line 12; used 3 times

Defined struct's

hentry defined in line 27; used 1 times
  • in line 25
htbl defined in line 34; used 2 times

Defined typedef's

HENT defined in line 25; used 28 times

Defined macros

FILLPCT defined in line 9; used 1 times

Usage of this include

Last modified: 1988-01-31
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1832
Valid CSS Valid XHTML 1.0 Strict