mirror of
https://github.com/neovim/neovim.git
synced 2026-08-01 21:29:09 +00:00
Problem: spell.c is too big.
Solution: Split it in spell file handling and spell checking.
9ccfebddc3
13 lines
236 B
C
13 lines
236 B
C
#ifndef NVIM_SPELLFILE_H
|
|
#define NVIM_SPELLFILE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/spell_defs.h"
|
|
#include "nvim/types.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "spellfile.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_SPELLFILE_H
|