ObjFW  Diff

Differences From Artifact [3bad531e54]:

To Artifact [f044fa8a49]:


15
16
17
18
19
20
21

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







+







#include <stdio.h>
#endif
#include <stdlib.h>

#import "OFString.h"
#import "OFAutoreleasePool.h"

extern void dictionary_tests();
extern void object_tests();
extern void string_tests();

static int fails = 0;

static void
output(OFString *str, int color)
83
84
85
86
87
88
89

90
91
92
84
85
86
87
88
89
90
91
92
93
94







+



}

int
main()
{
	object_tests();
	string_tests();
	dictionary_tests();

	return fails;
}