mirror of
https://github.com/neovim/neovim.git
synced 2026-02-08 21:41:51 +10:00
15 lines
267 B
C
15 lines
267 B
C
#ifndef NVIM_STRINGS_H
|
|
#define NVIM_STRINGS_H
|
|
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
#include "nvim/types.h"
|
|
#include "nvim/eval_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "strings.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_STRINGS_H
|