mirror of
https://github.com/neovim/neovim.git
synced 2025-09-13 06:48:17 +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
10 lines
174 B
C
10 lines
174 B
C
#ifndef NVIM_STRINGS_H
|
|
#define NVIM_STRINGS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "strings.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_STRINGS_H
|