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