ObjFW  Diff

Differences From Artifact [0ac3d63fc6]:

To Artifact [72b442269e]:


34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

/**
 * A class for managing strings.
 */
@interface OFString: OFObject <OFCopying, OFMutableCopying>
{
	char	     *string;
#ifdef __objc_INCLUDE_GNU
	unsigned int length;
#else
	int	     length;
#if __LP64__
	int	     _unused;
#endif
#endif
	BOOL	     is_utf8;
}

/**
 * \return A new autoreleased OFString
 */







<

<
<
|

<







34
35
36
37
38
39
40

41


42
43

44
45
46
47
48
49
50

/**
 * A class for managing strings.
 */
@interface OFString: OFObject <OFCopying, OFMutableCopying>
{
	char	     *string;

	unsigned int length;


#if !defined(__objc_INCLUDE_GNU) && __LP64__
	int	     _unused;

#endif
	BOOL	     is_utf8;
}

/**
 * \return A new autoreleased OFString
 */