aboutsummaryrefslogtreecommitdiffstats
path: root/Hashtable.h
blob: 32b02188bb297d56f1c0283a7caa57240ea88f6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* Do not edit this file. It was automatically generated. */

#ifndef HEADER_Hashtable
#define HEADER_Hashtable
/*
htop - Hashtable.h
(C) 2004-2011 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

#include <stdbool.h>

typedef struct Hashtable_ Hashtable;

typedef void(*Hashtable_PairFunction)(int, void*, void*);

typedef struct HashtableItem {
   unsigned int key;
   void* value;
   struct HashtableItem* next;
} HashtableItem;

struct Hashtable_ {
   int size;
   HashtableItem** buckets;
   int items;
   bool owner;
};

#ifdef DEBUG

extern int Hashtable_count(Hashtable* this);

#endif

extern Hashtable* Hashtable_new(int size, bool owner);

extern void Hashtable_delete(Hashtable* this);

extern void Hashtable_put(Hashtable* this, unsigned int key, void* value);

extern void* Hashtable_remove(Hashtable* this, unsigned int key);

extern void* Hashtable_get(Hashtable* this, unsigned int key);

extern void Hashtable_foreach(Hashtable* this, Hashtable_PairFunction f, void* userData);

#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy