mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 19:36:40 +00:00

Done by manual inspecting of the output of this script: grep -r -l -w "bool" * | grep 'c$' | sed 's/.c$//' > has_bool grep -r -l -w "stdbool.h" * | grep 'h$' | sed 's/.h$//' > has_include grep -F -x -v -f has_include has_bool
14 lines
260 B
C
14 lines
260 B
C
#ifndef NVIM_EX_CMDS2_H
|
|
#define NVIM_EX_CMDS2_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/ex_docmd.h"
|
|
|
|
typedef void (*DoInRuntimepathCB)(char_u *, void *);
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "ex_cmds2.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_EX_CMDS2_H
|