Edinburgh Speech Tools  2.1-release
ctype16.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define STD_API
 
#define xml_legal   0x01
 
#define xml_namestart   0x02
 
#define xml_namechar   0x04
 
#define xml_whitespace   0x08
 
#define is_xml_legal(c)   (c < 0x110000 && (c >= 0x10000 || (xml_char_map[c] & xml_legal)))
 
#define is_xml_namestart(c)   (c < 0x10000 && (xml_char_map[c] & xml_namestart))
 
#define is_xml_namechar(c)   (c < 0x10000 && (xml_char_map[c] & xml_namechar))
 
#define is_xml_whitespace(c)   (c < 0x10000 && (xml_char_map[c] & xml_whitespace))
 

Functions

STD_API void init_ctype16 (void)
 
STD_API int Toupper (int c)
 
STD_API int Tolower (int c)
 

Variables

STD_API unsigned char xml_char_map []
 

Macro Definition Documentation

#define STD_API

Definition at line 19 of file ctype16.h.

#define xml_legal   0x01

Definition at line 30 of file ctype16.h.

#define xml_namestart   0x02

Definition at line 31 of file ctype16.h.

#define xml_namechar   0x04

Definition at line 32 of file ctype16.h.

#define xml_whitespace   0x08

Definition at line 33 of file ctype16.h.

#define is_xml_legal (   c)    (c < 0x110000 && (c >= 0x10000 || (xml_char_map[c] & xml_legal)))

Definition at line 47 of file ctype16.h.

#define is_xml_namestart (   c)    (c < 0x10000 && (xml_char_map[c] & xml_namestart))

Definition at line 48 of file ctype16.h.

#define is_xml_namechar (   c)    (c < 0x10000 && (xml_char_map[c] & xml_namechar))

Definition at line 49 of file ctype16.h.

#define is_xml_whitespace (   c)    (c < 0x10000 && (xml_char_map[c] & xml_whitespace))

Definition at line 50 of file ctype16.h.

Function Documentation

STD_API void init_ctype16 ( void  )

Definition at line 26 of file ctype16.c.

STD_API int Toupper ( int  c)

Definition at line 52 of file ctype16.c.

STD_API int Tolower ( int  c)

Definition at line 39 of file ctype16.c.

Variable Documentation

STD_API unsigned char xml_char_map[]

Definition at line 24 of file ctype16.c.