mirror of
https://github.com/neovim/neovim.git
synced 2026-01-28 23:56:03 +00:00
Problem: The evalfunc.c file is too big.
Solution: Move testing support to a separate file.
ecaa70ea29
11 lines
212 B
C
11 lines
212 B
C
#ifndef NVIM_TESTING_H
|
|
#define NVIM_TESTING_H
|
|
|
|
#include "nvim/eval/typval.h"
|
|
#include "nvim/eval/funcs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "testing.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_TESTING_H
|