19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
*/
@interface OFMutableString: OFString
{
BOOL is_utf8;
}
/**
* Initializes an already allocated OFString.
*
* \return An initialized OFString
*/
- init;
/**
* Initializes an already allocated OFString from a C string.
*
* \param str A C string to initialize the OFString with
* \return An initialized OFString
*/
- initWithCString: (const char*)str;
/**
* Initializes an already allocated OFString from a format C string.
* See printf for the format syntax.
*
* \param fmt A C string used as format to initialize the OFString
* \return An initialized OFString
*/
- initWithFormat: (const char*)fmt, ...;
/**
* Initializes an already allocated OFString from a format C string.
* See printf for the format syntax.
*
* \param fmt A C string used as format to initialize the OFString
* \param args The arguments used in the format string
* \return An initialized OFString
*/
- initWithFormat: (const char*)fmt
andArguments: (va_list)args;
@end
|
|
<
<
<
<
<
<
<
|
|
|
|
|
|
|
|
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
*/
@interface OFMutableString: OFString
{
BOOL is_utf8;
}
/**
* Initializes an already allocated OFMutableString from a C string.
*
* \param str A C string to initialize the OFMutableString with
* \return An initialized OFMutableString
*/
- initWithCString: (const char*)str;
/**
* Initializes an already allocated OFMutableString from a format C string.
* See printf for the format syntax.
*
* \param fmt A C string used as format to initialize the OFMutableString
* \return An initialized OFMutableString
*/
- initWithFormat: (const char*)fmt, ...;
/**
* Initializes an already allocated OFMutableString from a format C string.
* See printf for the format syntax.
*
* \param fmt A C string used as format to initialize the OFMutableString
* \param args The arguments used in the format string
* \return An initialized OFMutableString
*/
- initWithFormat: (const char*)fmt
andArguments: (va_list)args;
@end
|