ekg2  GIT master
 All Struktury Danych Pliki Funkcje Zmienne Definicje typów Wyliczenia Wartości wyliczeń Definicje Grupay Strony
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