File: charclass.h

package info (click to toggle)
xterm 261-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,148 kB
  • ctags: 5,076
  • sloc: ansic: 53,555; sh: 4,230; perl: 1,210; makefile: 572
file content (19 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* $XTermId: charclass.h,v 1.6 2006/02/13 01:14:58 tom Exp $ */

/* $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);

#ifdef NO_LEAKS
extern void noleaks_CharacterClass(void);
#endif

#endif