mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
12 lines
187 B
C
12 lines
187 B
C
#ifndef HASHMAP_H_INCLUDED
|
|
#define HASHMAP_H_INCLUDED
|
|
#include <stdlib.h>
|
|
|
|
/** Hashmap structure (forward declaration) */
|
|
struct s_hashmap;
|
|
typedef struct s_hashmap NC_hashmap;
|
|
|
|
|
|
|
|
#endif
|