blob: 61afedbe50d5ec088e28148d52f37771e25231a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef NVIM_MAP_DEFS_H
#define NVIM_MAP_DEFS_H
#include "klib/khash.h"
typedef const char *cstr_t;
typedef void *ptr_t;
#define Map(T, U) Map_##T##_##U
#define PMap(T) Map(T, ptr_t)
#endif // NVIM_MAP_DEFS_H
|