Mercurial > sdl-ios-xcode
comparison test/testver.c @ 1668:4da1ee79c9af SDL-1.3
more tweaking indent options
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 29 May 2006 04:04:35 +0000 |
parents | 782fd950bd46 |
children |
comparison
equal
deleted
inserted
replaced
1667:1fddae038bc8 | 1668:4da1ee79c9af |
---|---|
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include "SDL.h" | 9 #include "SDL.h" |
10 | 10 |
11 int | 11 int |
12 main (int argc, char *argv[]) | 12 main(int argc, char *argv[]) |
13 { | 13 { |
14 SDL_version compiled; | 14 SDL_version compiled; |
15 | 15 |
16 /* Initialize SDL */ | 16 /* Initialize SDL */ |
17 if (SDL_Init (0) < 0) { | 17 if (SDL_Init(0) < 0) { |
18 fprintf (stderr, "Couldn't initialize SDL: %s\n", SDL_GetError ()); | 18 fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError()); |
19 exit (1); | 19 exit(1); |
20 } | 20 } |
21 #ifdef DEBUG | 21 #ifdef DEBUG |
22 fprintf (stderr, "SDL initialized\n"); | 22 fprintf(stderr, "SDL initialized\n"); |
23 #endif | 23 #endif |
24 #if SDL_VERSION_ATLEAST(1, 2, 0) | 24 #if SDL_VERSION_ATLEAST(1, 2, 0) |
25 printf ("Compiled with SDL 1.2 or newer\n"); | 25 printf("Compiled with SDL 1.2 or newer\n"); |
26 #else | 26 #else |
27 printf ("Compiled with SDL older than 1.2\n"); | 27 printf("Compiled with SDL older than 1.2\n"); |
28 #endif | 28 #endif |
29 SDL_VERSION (&compiled); | 29 SDL_VERSION(&compiled); |
30 printf ("Compiled version: %d.%d.%d\n", | 30 printf("Compiled version: %d.%d.%d\n", |
31 compiled.major, compiled.minor, compiled.patch); | 31 compiled.major, compiled.minor, compiled.patch); |
32 printf ("Linked version: %d.%d.%d\n", | 32 printf("Linked version: %d.%d.%d\n", |
33 SDL_Linked_Version ()->major, | 33 SDL_Linked_Version()->major, |
34 SDL_Linked_Version ()->minor, SDL_Linked_Version ()->patch); | 34 SDL_Linked_Version()->minor, SDL_Linked_Version()->patch); |
35 SDL_Quit (); | 35 SDL_Quit(); |
36 return (0); | 36 return (0); |
37 } | 37 } |