mirror of
https://github.com/neovim/neovim.git
synced 2026-02-04 11:30:53 +10:00
Problem: Some source files are too big.
Solution: Move buffer and window related functions to evalbuffer.c and
evalwindow.c. (Yegappan Lakshmanan, closes vim/vim#4898)
261f346f81
11 lines
234 B
C
11 lines
234 B
C
#ifndef NVIM_EVAL_BUFFER_H
|
|
#define NVIM_EVAL_BUFFER_H
|
|
|
|
#include "nvim/buffer_defs.h"
|
|
#include "nvim/eval/typval_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "eval/buffer.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_EVAL_BUFFER_H
|