ObjFW  Diff

Differences From Artifact [74c6375e2f]:

To Artifact [d4d814f095]:


48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 * \return The OFString as a C-type string of the type it was created as
 */
- (char*)cString;

/**
 * \return The OFString as a C-type wide string of the type it was created as
 */
- (wchar_t*)wcString;

/**
 * \return The length of the OFString
 */
- (size_t)length;

/**







|







48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 * \return The OFString as a C-type string of the type it was created as
 */
- (char*)cString;

/**
 * \return The OFString as a C-type wide string of the type it was created as
 */
- (wchar_t*)wCString;

/**
 * \return The length of the OFString
 */
- (size_t)length;

/**
97
98
99
100
101
102
103





104

/**
 * Append a wide C string to the OFString.
 *
 * \param str A wide C string to append
 */
- appendWideCString: (const wchar_t*)str;





@end







>
>
>
>
>

97
98
99
100
101
102
103
104
105
106
107
108
109

/**
 * Append a wide C string to the OFString.
 *
 * \param str A wide C string to append
 */
- appendWideCString: (const wchar_t*)str;

/**
 * Reverse the OFString.
 */
- reverse;
@end