mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00

Closes #6463 refactor/single-include: file_search.h Closes #6455 refactor/single-include: hardcopy.h Closes #6457 refactor/single-include: if_cscope.h Closes #6458 refactor/single-include: mark.h Closes #6461 refactor/single-include: mbyte.h Closes #6462 refactor/single-include: memline.h Closes #6464 refactor/single-include: menu.h Closes #6468 refactor/single-include: ops.h Closes #6470
12 lines
274 B
C
12 lines
274 B
C
#ifndef NVIM_MEMLINE_H
|
|
#define NVIM_MEMLINE_H
|
|
|
|
#include "nvim/types.h"
|
|
#include "nvim/pos.h" // for pos_T, linenr_T, colnr_T
|
|
#include "nvim/buffer_defs.h" // for buf_T
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "memline.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_MEMLINE_H
|