blob: d5a302362f2079e3a6317711e8417cd0d2b996cc (
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
|