42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*!
* @brief Appends the specified characters to the OFMutableString.
*
* @param characters An array of characters to append
* @param length The length of the array of characters
*/
- (void)appendCharacters: (of_unichar_t*)characters
length: (size_t)length;
/*!
* @brief Appends a UTF-8 encoded C string to the OFMutableString.
*
* @param UTF8String A UTF-8 encoded C string to append
*/
|
|
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*!
* @brief Appends the specified characters to the OFMutableString.
*
* @param characters An array of characters to append
* @param length The length of the array of characters
*/
- (void)appendCharacters: (const of_unichar_t*)characters
length: (size_t)length;
/*!
* @brief Appends a UTF-8 encoded C string to the OFMutableString.
*
* @param UTF8String A UTF-8 encoded C string to append
*/
|