blob: 15a68a686322b4ca5b6d48f57d8bff4d25f9743b [file] [log] [blame]
Bram Moolenaar2d3c0a92005-03-21 08:27:48 +00001/* spell.c */
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002int spell_check __ARGS((win_T *wp, char_u *ptr, int *attrp));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003int spell_move_to __ARGS((int dir, int allwords, int curline));
Bram Moolenaar2d3c0a92005-03-21 08:27:48 +00004char_u *did_set_spelllang __ARGS((buf_T *buf));
5void spell_reload __ARGS((void));
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00006void put_bytes __ARGS((FILE *fd, long_u nr, int len));
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00007void ex_mkspell __ARGS((exarg_T *eap));
Bram Moolenaar82cf9b62005-06-07 21:09:25 +00008void ex_spell __ARGS((exarg_T *eap));
9void spell_add_word __ARGS((char_u *word, int len, int bad));
Bram Moolenaar45eeb132005-06-06 21:59:07 +000010void init_spell_chartab __ARGS((void));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011void spell_suggest __ARGS((void));
Bram Moolenaard857f0e2005-06-21 22:37:39 +000012void spell_suggest_list __ARGS((garray_T *gap, char_u *word, int maxcount));
Bram Moolenaar2d3c0a92005-03-21 08:27:48 +000013/* vim: set ft=c : */