mirror of
https://github.com/neovim/neovim.git
synced 2026-02-04 19:42:21 +10:00
It's confusing to mix vendored dependencies with neovim source code. A clean separation is simpler to keep track of and simpler to document.
13 lines
214 B
C
13 lines
214 B
C
#ifndef NVIM_MAP_DEFS_H
|
|
#define NVIM_MAP_DEFS_H
|
|
|
|
#include "klib/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
|