blob: c58280dac07e93526ce7c297d3bf9b0b5b505719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* $XTermId: charclass.h,v 1.5 2006/02/11 12:01:35 tom Exp $ */
/* $XFree86: xc/programs/xterm/charclass.h,v 1.2 2006/01/04 02:10:19 dickey Exp $ */
#ifndef CHARCLASS_H
#define CHARCLASS_H
extern void init_classtab(void);
/* intialise the table. needs calling before either of the
others. */
extern int SetCharacterClassRange(int low, int high, int value);
extern int CharacterClass(int c);
#ifdef NO_LEAKS
extern void noleaks_CharacterClass(void);
#endif
#endif
|