mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-25 21:58:21 +01:00
28 lines
565 B
C++
28 lines
565 B
C++
#ifndef ARABICA_XML_CHARACTER_CLASSES_H
|
|
#define ARABICA_XML_CHARACTER_CLASSES_H
|
|
|
|
#ifdef _MSC_VER
|
|
# include <stddef.h>
|
|
#endif
|
|
|
|
namespace Arabica
|
|
{
|
|
|
|
namespace XML
|
|
{
|
|
bool is_char(wchar_t c);
|
|
bool is_space(wchar_t c);
|
|
bool is_name_char(wchar_t c);
|
|
bool is_ncname_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);
|
|
bool is_letter_or_digit(wchar_t c);
|
|
|
|
} // namespace XML
|
|
|
|
} // namespace Arabica
|
|
#endif
|