mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 10:26: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.
13 lines
235 B
C
13 lines
235 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/map.h"
|
|
#include "nvim/ui.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "api/ui.h.generated.h"
|
|
# include "ui_events_remote.h.generated.h"
|
|
#endif
|