turns printfs back on
[freebsd-src/fkvm-freebsd.git] / contrib / gperf / src / hash-table.h
blob86438d00f7d6cc2770704dbff500c9ed0b10ce7a
1 /* This may look like C code, but it is really -*- C++ -*- */
3 /* Hash table used to check for duplicate keyword entries.
5 Copyright (C) 1989-1998, 2000 Free Software Foundation, Inc.
6 written by Douglas C. Schmidt (schmidt@ics.uci.edu)
8 This file is part of GNU GPERF.
10 GNU GPERF is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 1, or (at your option)
13 any later version.
15 GNU GPERF is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GNU GPERF; see the file COPYING. If not, write to the Free
22 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
24 #ifndef hash_table_h
25 #define hash_table_h 1
27 #include "list-node.h"
29 class Hash_Table
31 private:
32 List_Node **table; /* Vector of pointers to linked lists of List_Node's. */
33 int size; /* Size of the vector. */
34 int collisions; /* Find out how well our double hashing is working! */
35 int ignore_length;
37 public:
38 Hash_Table (List_Node **t, int s, int ignore_len);
39 ~Hash_Table (void);
40 List_Node *insert (List_Node *item);
43 #endif