Files
neovim/src/nvim/map_defs.h
Eliseo Martínez da51dc9cf2 Introduce nvim namespace: Move files.
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.
2014-05-15 20:46:01 +02:00

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 */