File: xmlc.h

package info (click to toggle)
rnv 1.7.10-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 960 kB
  • ctags: 1,593
  • sloc: ansic: 6,539; lisp: 1,129; sh: 996; makefile: 135; perl: 129; python: 96; sed: 5
file content (16 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* $Id: xmlc.h 130 2003-12-21 22:38:28Z dvd $ */

#ifndef XMLC_H
#define XMLC_H 1

/* character classes required for parsing XML */
extern int xmlc_white_space(int u);
extern int xmlc_base_char(int u);
extern int xmlc_ideographic(int u);
extern int xmlc_combining_char(int u);
extern int xmlc_digit(int u);
extern int xmlc_extender(int u);

extern int u_in_ranges(int u,int r[][2],int len);

#endif