mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 18:36:30 +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.
16 lines
367 B
C
16 lines
367 B
C
#pragma once
|
|
|
|
#include "nvim/api/keysets.h"
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/decoration.h"
|
|
#include "nvim/macros.h"
|
|
#include "nvim/map.h"
|
|
#include "nvim/types.h"
|
|
|
|
EXTERN Map(String, int) namespace_ids INIT( = MAP_INIT);
|
|
EXTERN handle_T next_namespace_id INIT( = 1);
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "api/extmark.h.generated.h"
|
|
#endif
|