ObjFW  Diff

Differences From Artifact [2f469f9606]:

To Artifact [0dde8a8b94]:


30
31
32
33
34
35
36
37

38
39
40

41
42
43
44
45
46

47
48
49
50

51
52
30
31
32
33
34
35
36

37
38
39

40
41
42
43
44
45

46
47
48
49

50
51
52







-
+


-
+





-
+



-
+


 */
- 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
 * \param fmt A string used as format to initialize the OFMutableString
 * \return An initialized OFMutableString
 */
- initWithFormat: (const char*)fmt, ...;
- initWithFormat: (OFString*)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 fmt A 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
- initWithFormat: (OFString*)fmt
    andArguments: (va_list)args;
@end