mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 23:48:32 +00:00

* refactor: format all C files under nvim * refactor: disable formatting for Vim-owned files: * src/nvim/indent_c.c * src/nvim/regexp.c * src/nvim/regexp_nfa.c * src/nvim/testdir/samples/memfile_test.c
14 lines
267 B
C
14 lines
267 B
C
#ifndef NVIM_SPELLFILE_H
|
|
#define NVIM_SPELLFILE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/ex_cmds_defs.h"
|
|
#include "nvim/spell_defs.h"
|
|
#include "nvim/types.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "spellfile.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_SPELLFILE_H
|