ObjFW  Diff

Differences From Artifact [71d6e95663]:

To Artifact [9b66ad1a81]:


48
49
50
51
52
53
54
55
56


57
58
59
60

61
62
63
64
65
66
67
48
49
50
51
52
53
54


55
56




57
58
59
60
61
62
63
64







-
-
+
+
-
-
-
-
+







@class OFURL;

/**
 * \brief A class for handling strings.
 */
@interface OFString: OFObject <OFCopying, OFMutableCopying, OFComparing>
{
	char	     *string;
	unsigned int length;
	char   *string;
	size_t length;
#if defined(OF_APPLE_RUNTIME) && __LP64__
	int	     _unused;
#endif
	BOOL	     isUTF8;
	BOOL   isUTF8;
}

/**
 * \return A new autoreleased OFString
 */
+ string;