mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
13 lines
218 B
C
13 lines
218 B
C
#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
|