mirror of
https://github.com/neovim/neovim.git
synced 2025-09-22 11:18:19 +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_bool has_include
12 lines
225 B
C
12 lines
225 B
C
#ifndef NVIM_API_TABPAGE_H
|
|
#define NVIM_API_TABPAGE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "nvim/api/private/defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "api/tabpage.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_API_TABPAGE_H
|