blob: c93f8ff47681c35d68808d664d136f6fd2e67a30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $XFree86: xc/programs/xterm/charclass.h,v 1.1 2000/08/26 04:33:53 dawes 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);
#endif
|