mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 02:46:31 +00:00

It is less error-prone than manually defining header guards. Pretty much all compilers support it even if it's not part of the C standard.
11 lines
218 B
C
11 lines
218 B
C
#pragma once
|
|
|
|
#include "nvim/api/keysets.h"
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/decoration.h"
|
|
#include "nvim/ex_cmds.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "api/command.h.generated.h"
|
|
#endif
|