mirror of
https://github.com/neovim/neovim.git
synced 2026-02-09 21:38:51 +00:00
Done by manual inspection of the output of this script: grep -r -l -w "bool\|true\|false" * | grep 'c$\|h$' > has_bool grep -r -l "stdbool.h" * | grep 'c$\|h$' > has_include grep -F -x -v -f has_include has_bool
10 lines
154 B
C
10 lines
154 B
C
#ifndef NVIM_UI_H
|
|
#define NVIM_UI_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "ui.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_UI_H
|