ObjFW  Diff

Differences From Artifact [a723d0168a]:

To Artifact [eaba6860c9]:


19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

#import "OFString.h"

/**
 * \brief A class for storing and modifying strings.
 */
@interface OFMutableString: OFString
/**
 * \brief Sets the OFMutableString to the specified UTF-8 encoded C string.
 *
 * \param newCString A UTF-8 encoded C string to set the OFMutableString to.
 */
- (void)setToCString: (const char*)newCString;

/**
 * \brief Appends a UTF-8 encoded C string to the OFMutableString.
 *
 * \param cString A UTF-8 encoded C string to append
 */
- (void)appendCString: (const char*)cString;








<
<
<
<
<
<
<







19
20
21
22
23
24
25







26
27
28
29
30
31
32

#import "OFString.h"

/**
 * \brief A class for storing and modifying strings.
 */
@interface OFMutableString: OFString







/**
 * \brief Appends a UTF-8 encoded C string to the OFMutableString.
 *
 * \param cString A UTF-8 encoded C string to append
 */
- (void)appendCString: (const char*)cString;