83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
encoding: (of_string_encoding_t)encoding
length: (size_t)cStringLength;
/*!
* @brief Appends a formatted string to the OFMutableString.
*
* See printf for the format syntax. As an addition, %@ is available as format
* specifier for objects.
*
* @param format A format string which generates the string to append
*/
- (void)appendFormat: (OFConstantString*)format, ...;
/*!
* @brief Appends a formatted string to the OFMutableString.
*
* See printf for the format syntax. As an addition, %@ is available as format
* specifier for objects.
*
* @param format A format string which generates the string to append
* @param arguments The arguments used in the format string
*/
- (void)appendFormat: (OFConstantString*)format
arguments: (va_list)arguments;
|
|
|
|
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
encoding: (of_string_encoding_t)encoding
length: (size_t)cStringLength;
/*!
* @brief Appends a formatted string to the OFMutableString.
*
* See printf for the format syntax. As an addition, %@ is available as format
* specifier for objects and %C for of_unichar_t.
*
* @param format A format string which generates the string to append
*/
- (void)appendFormat: (OFConstantString*)format, ...;
/*!
* @brief Appends a formatted string to the OFMutableString.
*
* See printf for the format syntax. As an addition, %@ is available as format
* specifier for objects and %C for of_unichar_t.
*
* @param format A format string which generates the string to append
* @param arguments The arguments used in the format string
*/
- (void)appendFormat: (OFConstantString*)format
arguments: (va_list)arguments;
|