charclass.h revision 913cc679
1/* $XTermId: charclass.h,v 1.7 2017/05/29 14:57:26 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
8extern void init_classtab(void);
9/* intialise the table. needs calling before either of the
10   others. */
11
12extern int SetCharacterClassRange(int low, int high, int value);
13extern int CharacterClass(int c);
14
15#if OPT_REPORT_CCLASS
16extern void report_wide_char_class(void);
17#endif
18
19#ifdef NO_LEAKS
20extern void noleaks_CharacterClass(void);
21#endif
22
23#endif
24