mirror of
https://github.com/neovim/neovim.git
synced 2026-02-11 06:52:09 +10:00
* refactor: format header files with uncrustify * fixup(justin): skip formatting of terminfo_defs.h * fixup: force winsock2 to be included first * fixup: simplify disable/enable directive to "uncrustify:off/on"
14 lines
267 B
C
14 lines
267 B
C
#ifndef NVIM_EVAL_DECODE_H
|
|
#define NVIM_EVAL_DECODE_H
|
|
|
|
#include <msgpack.h>
|
|
#include <stddef.h>
|
|
|
|
#include "nvim/eval/typval.h"
|
|
#include "nvim/globals.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "eval/decode.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_EVAL_DECODE_H
|