mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 14:26:07 +00:00

Problem: Code for the argument list is spread out.
Solution: Put argument list code in arglist.c. (Yegappan Lakshmanan,
closes vim/vim#4819)
4ad62155a1
12 lines
215 B
C
12 lines
215 B
C
#ifndef NVIM_ARGLIST_H
|
|
#define NVIM_ARGLIST_H
|
|
|
|
#include "nvim/eval/typval.h"
|
|
#include "nvim/ex_cmds_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "arglist.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_ARGLIST_H
|