xenocara/app/xterm/charclass.h

24 lines
545 B
C
Raw Normal View History

2017-07-15 13:20:51 -06:00
/* $XTermId: charclass.h,v 1.7 2017/05/29 14:57:26 tom Exp $ */
2006-11-26 04:11:12 -07:00
/* $XFree86: xc/programs/xterm/charclass.h,v 1.3 2006/02/13 01:14:58 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);
2017-07-15 13:20:51 -06:00
#if OPT_REPORT_CCLASS
extern void report_wide_char_class(void);
#endif
2006-11-26 04:11:12 -07:00
#ifdef NO_LEAKS
extern void noleaks_CharacterClass(void);
#endif
#endif