1 /* $XTermId: charclass.h,v 1.8 2020/01/18 18:29:41 tom Exp $ */
2 
3 /* $XFree86: xc/programs/xterm/charclass.h,v 1.3 2006/02/13 01:14:58 dickey Exp $ */
4 
5 #ifndef CHARCLASS_H
6 #define CHARCLASS_H
7 
8 extern void init_classtab(void);
9 /* initialise the table. needs calling before either of the
10    others. */
11 
12 extern int SetCharacterClassRange(int low, int high, int value);
13 extern int CharacterClass(int c);
14 
15 #if OPT_REPORT_CCLASS
16 extern void report_wide_char_class(void);
17 #endif
18 
19 #ifdef NO_LEAKS
20 extern void noleaks_CharacterClass(void);
21 #endif
22 
23 #endif
24