aboutsummaryrefslogtreecommitdiff
path: root/hash.h
blob: 2a095cfd6c4c80967f91e70749bec9faf75f92ea (plain)
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
#ifndef HASH_H
#define HASH_H

#include <string.h>

#include "macro.h"

unsigned long hash(char*);

#define TABLE(T)     TP(table_,     T)
#define HASH_PUT(T)  TP(hash_put_,  T)
#define HASH_GET(T)  TP(hash_get_,  T)
#define HASH_INIT(T) TP(hash_init_, T)

#endif /* HASH_H */
#ifdef TYPE

typedef struct {
	int size;
	int item_count;
	TYPE* values;
} TABLE(TYPE);

int HASH_PUT(TYPE) ( TABLE(TYPE)* table, TYPE* value );

int HASH_INIT(TYPE) ( TABLE(TYPE)* table, int init_size );

TYPE* HASH_GET(TYPE) ( TABLE(TYPE)* table, char* key );

#endif /* HASH_H */