Deleted Added
sdiff udiff text old ( 58551 ) new ( 67064 )
full compact
1/* This may look like C code, but it is really -*- C++ -*- */
2
3/* Hash table used to check for duplicate keyword entries.
4
5 Copyright (C) 1989-1998 Free Software Foundation, Inc.
6 written by Douglas C. Schmidt (schmidt@ics.uci.edu)
7
8This file is part of GNU GPERF.
9
10GNU GPERF is free software; you can redistribute it and/or modify
11it under the terms of the GNU General Public License as published by
12the Free Software Foundation; either version 1, or (at your option)
13any later version.

--- 13 unchanged lines hidden (view full) ---

27#include "list-node.h"
28
29class Hash_Table
30{
31private:
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
36public:
37 Hash_Table (List_Node **t, int s);
38 ~Hash_Table (void);
39 List_Node *operator () (List_Node *item, int ignore_length);
40};
41
42#endif