blob: 87261a24442183c3d37f65e080606ef9e952de8f [file] [log] [blame]
Bram Moolenaar2d3c0a92005-03-21 08:27:48 +00001/* spell.c */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002int spell_check __ARGS((win_T *wp, char_u *ptr, hlf_T *attrp, int *capcol));
3int spell_move_to __ARGS((win_T *wp, int dir, int allwords, int curline, hlf_T *attrp));
Bram Moolenaar30abd282005-06-22 22:35:10 +00004void spell_cat_line __ARGS((char_u *buf, char_u *line, int maxlen));
Bram Moolenaar2d3c0a92005-03-21 08:27:48 +00005char_u *did_set_spelllang __ARGS((buf_T *buf));
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00006void spell_free_all __ARGS((void));
Bram Moolenaar2d3c0a92005-03-21 08:27:48 +00007void spell_reload __ARGS((void));
Bram Moolenaar90915b52005-08-21 22:17:52 +00008int spell_check_msm __ARGS((void));
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00009void put_bytes __ARGS((FILE *fd, long_u nr, int len));
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000010void ex_mkspell __ARGS((exarg_T *eap));
Bram Moolenaar82cf9b62005-06-07 21:09:25 +000011void ex_spell __ARGS((exarg_T *eap));
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +000012void spell_add_word __ARGS((char_u *word, int len, int bad, int index));
Bram Moolenaar45eeb132005-06-06 21:59:07 +000013void init_spell_chartab __ARGS((void));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000014int spell_check_sps __ARGS((void));
Bram Moolenaar90915b52005-08-21 22:17:52 +000015void spell_suggest __ARGS((int count));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000016void ex_spellrepall __ARGS((exarg_T *eap));
Bram Moolenaar488c6512005-08-11 20:09:58 +000017void spell_suggest_list __ARGS((garray_T *gap, char_u *word, int maxcount, int need_cap));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000018char_u *eval_soundfold __ARGS((char_u *word));
Bram Moolenaar3b506942005-06-23 22:36:45 +000019void ex_spelldump __ARGS((exarg_T *eap));
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +000020char_u *spell_to_word_end __ARGS((char_u *start, buf_T *buf));
Bram Moolenaar488c6512005-08-11 20:09:58 +000021int spell_word_start __ARGS((int startcol));
Bram Moolenaarc54b8a72005-09-30 21:20:29 +000022void spell_expand_check_cap __ARGS((colnr_T col));
Bram Moolenaar488c6512005-08-11 20:09:58 +000023int expand_spelling __ARGS((linenr_T lnum, int col, char_u *pat, char_u ***matchp));
Bram Moolenaar2d3c0a92005-03-21 08:27:48 +000024/* vim: set ft=c : */