1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
|
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
|
+
+
+
+
+
+
+
|
#ifdef OF_HAVE_UNICODE_TABLES
/*!
* @brief Returns the string in Unicode Normalization Form D (NFD).
*
* @return The string in Unicode Normalization Form D (NFD)
*/
- (OFString *)decomposedStringWithCanonicalMapping;
/*!
* @brief Returns the string in Unicode Normalization Form KD (NFKD).
*
* @return The string in Unicode Normalization Form KD (NFKD)
*/
- (OFString *)decomposedStringWithCompatibilityMapping;
#endif
#ifdef OF_HAVE_FILES
/*!
* @brief Writes the string into the specified file using UTF-8 encoding.
*
* @param path The path of the file to write to
|