Skip to content

Latest commit

 

History

History
60 lines (54 loc) · 1.29 KB

testtypes.c

File metadata and controls

60 lines (54 loc) · 1.29 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
#include <stdio.h>
Oct 3, 2005
Oct 3, 2005
3
4
#include <stdlib.h>
#include <string.h>
Jun 7, 2001
Jun 7, 2001
5
#include "SDL_main.h"
Apr 26, 2001
Apr 26, 2001
6
7
#include "SDL_types.h"
Oct 3, 2005
Oct 3, 2005
8
9
10
11
12
13
14
15
16
17
/*
* Watcom C flags these as Warning 201: "Unreachable code" if you just
* compare them directly, so we push it through a function to keep the
* compiler quiet. --ryan.
*/
static int badsize(size_t sizeoftype, size_t hardcodetype)
{
return sizeoftype != hardcodetype;
}
Apr 26, 2001
Apr 26, 2001
18
19
20
21
22
23
24
25
int main(int argc, char *argv[])
{
int error = 0;
int verbose = 1;
if ( argv[1] && (strcmp(argv[1], "-q") == 0) )
verbose = 0;
Oct 3, 2005
Oct 3, 2005
26
if ( badsize(sizeof(Uint8), 1) ) {
Apr 26, 2001
Apr 26, 2001
27
28
29
30
31
if ( verbose )
printf("sizeof(Uint8) != 1, instead = %d\n",
sizeof(Uint8));
++error;
}
Oct 3, 2005
Oct 3, 2005
32
if ( badsize(sizeof(Uint16), 2) ) {
Apr 26, 2001
Apr 26, 2001
33
34
35
36
37
if ( verbose )
printf("sizeof(Uint16) != 2, instead = %d\n",
sizeof(Uint16));
++error;
}
Oct 3, 2005
Oct 3, 2005
38
if ( badsize(sizeof(Uint32), 4) ) {
Apr 26, 2001
Apr 26, 2001
39
40
41
42
43
44
if ( verbose )
printf("sizeof(Uint32) != 4, instead = %d\n",
sizeof(Uint32));
++error;
}
#ifdef SDL_HAS_64BIT_TYPE
Oct 3, 2005
Oct 3, 2005
45
if ( badsize(sizeof(Uint64), 8) ) {
Apr 26, 2001
Apr 26, 2001
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
if ( verbose )
printf("sizeof(Uint64) != 8, instead = %d\n",
sizeof(Uint64));
++error;
}
#else
if ( verbose ) {
printf("WARNING: No 64-bit datatype on this platform\n");
}
#endif
if ( verbose && ! error )
printf("All data types are the expected size.\n");
return( error ? 1 : 0 );
}