2016-03-22 21:29:00 +08:00
|
|
|
#ifndef HASHMAP_H_INCLUDED
|
|
|
|
#define HASHMAP_H_INCLUDED
|
2016-04-05 23:04:30 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2016-03-22 21:29:00 +08:00
|
|
|
/** Hashmap structure (forward declaration) */
|
|
|
|
struct s_hashmap;
|
|
|
|
typedef struct s_hashmap NC_hashmap;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|