mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 23:18:33 +00:00

Problem: spell.c is too big.
Solution: Split it in spell file handling and spell checking.
9ccfebddc3
12 lines
196 B
C
12 lines
196 B
C
#ifndef NVIM_SPELL_H
|
|
#define NVIM_SPELL_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/spell_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "spell.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_SPELL_H
|