summary refs log tree commit diff
path: root/src/hashtable.h
blob: 2a312042cbd71a06dd193d9b7816bcf44592abb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __HASHTABLE_H__
#define __HASHTABLE_H__

void typedef *HashTable;

HashTable hashtable_init();

int hashtable_deinit(HashTable*);

int hashtable_put(HashTable, char, void*);

void* hashtable_get(HashTable, char);

#endif