|
|
|
|
|
|
|
|
*/ |
|
|
*/ |
|
|
typedef enum ucd_property_ |
|
|
typedef enum ucd_property_ |
|
|
{ |
|
|
{ |
|
|
UCD_PROPERTY_WHITE_SPACE = 0x0001, /**< @brief White_Space */ |
|
|
|
|
|
UCD_PROPERTY_NO_BREAK = 0x0002, /**< @brief <noBreak> */ |
|
|
|
|
|
|
|
|
UCD_PROPERTY_WHITE_SPACE = 0x0001, /**< @brief White_Space */ |
|
|
|
|
|
UCD_PROPERTY_NO_BREAK = 0x0002, /**< @brief <noBreak> */ |
|
|
|
|
|
UCD_PROPERTY_BIDI_CONTROL = 0x0004, /**< @brief Bidi_Control */ |
|
|
} ucd_property; |
|
|
} ucd_property; |
|
|
|
|
|
|
|
|
/** @brief Return the properties of the specified codepoint. |
|
|
/** @brief Return the properties of the specified codepoint. |
|
|
|
|
|
|
|
|
{ |
|
|
{ |
|
|
White_Space = UCD_PROPERTY_WHITE_SPACE, /**< @brief White_Space */ |
|
|
White_Space = UCD_PROPERTY_WHITE_SPACE, /**< @brief White_Space */ |
|
|
noBreak = UCD_PROPERTY_NO_BREAK, /**< @brief <noBreak> */ |
|
|
noBreak = UCD_PROPERTY_NO_BREAK, /**< @brief <noBreak> */ |
|
|
|
|
|
Bidi_Control = UCD_PROPERTY_BIDI_CONTROL, /**< @brief Bidi_Control */ |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
/** @brief Return the properties of the specified codepoint. |
|
|
/** @brief Return the properties of the specified codepoint. |