ekg2  GIT master
spell.h
Idź do dokumentacji tego pliku.
1 #ifndef __EKG_NCURSES_SPELL_H
2 #define __EKG_NCURSES_SPELL_H
3 
4 #ifdef HAVE_LIBASPELL
5 
6 extern int config_aspell;
7 extern char *config_aspell_lang;
8 
9 #include <aspell.h>
10 
11 # define ASPELLCHAR 5
12 
13 extern AspellSpeller *spell_checker;
14 
15 void ncurses_spellcheck_init(void);
16 void spellcheck(CHAR_T *what, char *where);
17 
18 #endif
19 
20 #endif
char * config_aspell_lang
Definition: spell.c:32
void ncurses_spellcheck_init(void)
Definition: spell.c:42
#define CHAR_T
Definition: nc-strings.h:37
AspellSpeller * spell_checker
Definition: spell.c:34
int config_aspell
Definition: spell.c:31
void spellcheck(wchar_t *what, char *where)
Definition: spell.c:90