mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-03 23:02:11 +01:00
21 lines
444 B
C
21 lines
444 B
C
|
#ifndef JEZUK_XML_CHARACTER_CLASSES_H
|
||
|
#define JEZUK_XML_CHARACTER_CLASSES_H
|
||
|
|
||
|
#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
|
||
|
|
||
|
#endif
|