htop/Hashtable.h

43 lines
941 B
C
Raw Normal View History

2006-03-04 18:16:49 +00:00
#ifndef HEADER_Hashtable
#define HEADER_Hashtable
/*
2011-12-26 21:35:57 +00:00
htop - Hashtable.h
2011-05-26 16:35:07 +00:00
(C) 2004-2011 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
2006-03-04 18:16:49 +00:00
in the source distribution for its full text.
*/
#include <stdbool.h>
#include <stddef.h>
2006-03-04 18:16:49 +00:00
typedef unsigned int ht_key_t;
2006-03-04 18:16:49 +00:00
typedef void(*Hashtable_PairFunction)(ht_key_t key, void* value, void* userdata);
typedef struct Hashtable_ Hashtable;
2006-03-04 18:16:49 +00:00
#ifndef NDEBUG
2006-11-12 21:52:14 +00:00
size_t Hashtable_count(const Hashtable* this);
2006-11-12 21:52:14 +00:00
#endif /* NDEBUG */
2006-11-12 21:52:14 +00:00
Hashtable* Hashtable_new(size_t size, bool owner);
2006-03-04 18:16:49 +00:00
void Hashtable_delete(Hashtable* this);
2006-03-04 18:16:49 +00:00
void Hashtable_clear(Hashtable* this);
void Hashtable_setSize(Hashtable* this, size_t size);
void Hashtable_put(Hashtable* this, ht_key_t key, void* value);
2006-03-04 18:16:49 +00:00
void* Hashtable_remove(Hashtable* this, ht_key_t key);
2006-11-12 21:52:14 +00:00
void* Hashtable_get(Hashtable* this, ht_key_t key);
2006-03-04 18:16:49 +00:00
void Hashtable_foreach(Hashtable* this, Hashtable_PairFunction f, void* userData);
2006-03-04 18:16:49 +00:00
#endif