15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <stdio.h>
#endif
#include <stdlib.h>
#import "OFString.h"
#import "OFAutoreleasePool.h"
extern void object_tests();
extern void string_tests();
static int fails = 0;
static void
output(OFString *str, int color)
|
>
|
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
|
}
int
main()
{
object_tests();
string_tests();
return fails;
}
|
>
|
84
85
86
87
88
89
90
91
92
93
94
|
}
int
main()
{
object_tests();
string_tests();
dictionary_tests();
return fails;
}
|