mirror of
https://github.com/neovim/neovim.git
synced 2026-04-25 00:35:36 +00:00
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.
15 lines
336 B
C
15 lines
336 B
C
#ifndef NEOVIM_MAP_DEFS_H
|
|
#define NEOVIM_MAP_DEFS_H
|
|
|
|
typedef struct map Map;
|
|
|
|
/// Callback for iterating through each key/value pair in a map
|
|
///
|
|
/// @param map The `Map` instance
|
|
/// @param key A key string
|
|
/// @param value A value
|
|
typedef void (*key_value_cb)(Map *map, const char *key, void *value);
|
|
|
|
#endif /* NEOVIM_MAP_DEFS_H */
|
|
|