blob: 7b4596ce2e43b60e91d56445677c12aded679182 (
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 "nvim/lib/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
|