arabica/XML/XMLCharacterClasses.h

22 lines
449 B
C
Raw Normal View History

2003-09-11 12:26:53 +02:00
#ifndef ARABICA_XML_CHARACTER_CLASSES_H
#define ARABICA_XML_CHARACTER_CLASSES_H
2002-06-21 13:16:28 +02:00
#ifdef _MSC_VER
# include <stddef.h>
#endif
namespace XML
{
bool is_char(wchar_t c);
bool is_space(wchar_t c);
bool is_name_char(wchar_t c);
bool is_letter(wchar_t c);
bool is_base_char(wchar_t c);
bool is_ideographic(wchar_t c);
bool is_digit(wchar_t c);
bool is_combining_char(wchar_t c);
bool is_extender(wchar_t c);
}; // namespace XML
2002-11-23 21:03:54 +01:00
#endif