Bram Moolenaar | 9ccfebd | 2016-07-19 16:39:08 +0200 | [diff] [blame] | 1 | /* spellfile.c */ |
| 2 | slang_T *spell_load_file(char_u *fname, char_u *lang, slang_T *old_lp, int silent); |
| 3 | void suggest_load_files(void); |
| 4 | int spell_check_msm(void); |
| 5 | void ex_mkspell(exarg_T *eap); |
| 6 | void mkspell(int fcount, char_u **fnames, int ascii, int over_write, int added_word); |
| 7 | void ex_spell(exarg_T *eap); |
Bram Moolenaar | 08cc374 | 2019-08-11 22:51:14 +0200 | [diff] [blame] | 8 | void spell_add_word(char_u *word, int len, int what, int idx, int undo); |
Bram Moolenaar | 9ccfebd | 2016-07-19 16:39:08 +0200 | [diff] [blame] | 9 | /* vim: set ft=c : */ |