1#ifndef NVIM_MAP_DEFS_H
2#define NVIM_MAP_DEFS_H
3
4#include "nvim/lib/khash.h"
5
6typedef const char * cstr_t;
7typedef void * ptr_t;
8
9#define Map(T, U) Map_##T##_##U
10#define PMap(T) Map(T, ptr_t)
11
12#endif // NVIM_MAP_DEFS_H
13