ObjFW  Diff

Differences From Artifact [379f8259de]:

To Artifact [289337b95c]:


15
16
17
18
19
20
21

22
23
24
25
26
27
28
 */

#include <stdio.h>
#include <stdarg.h>
#include <inttypes.h>

#import "OFObject.h"


typedef uint32_t of_unichar_t;

/**
 * \brief The encoding of a string.
 */
typedef enum of_string_encoding_t {







>







15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 */

#include <stdio.h>
#include <stdarg.h>
#include <inttypes.h>

#import "OFObject.h"
#import "OFSerialization.h"

typedef uint32_t of_unichar_t;

/**
 * \brief The encoding of a string.
 */
typedef enum of_string_encoding_t {
48
49
50
51
52
53
54
55

56
57
58
59
60
61
62

@class OFArray;
@class OFURL;

/**
 * \brief A class for handling strings.
 */
@interface OFString: OFObject <OFCopying, OFMutableCopying, OFComparing>

{
	char   *string;
	size_t length;
	BOOL   isUTF8;
}

/**







|
>







49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64

@class OFArray;
@class OFURL;

/**
 * \brief A class for handling strings.
 */
@interface OFString: OFObject <OFCopying, OFMutableCopying, OFComparing,
    OFSerialization>
{
	char   *string;
	size_t length;
	BOOL   isUTF8;
}

/**