X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Flibgame%2Ftypes.h;h=5a1df5bd30fbc6f10c1269ebd8f9724e7bfc5242;hb=b81f28710057e7d84528b65b92e9b4d1aaadab6c;hp=e4aad2a3a5f6233600cc438f8bfac0896fd1b091;hpb=da14f69fd95c7bd5a0d70cdf4935af06f1f20a04;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index e4aad2a3..5a1df5bd 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -1,19 +1,24 @@ /*********************************************************** -* Rocks'n'Diamonds -- McDuffin Strikes Back! * +* Artsoft Retro-Game Library * *----------------------------------------------------------* -* (c) 1995-98 Artsoft Entertainment * -* Holger Schemel * -* Oststrasse 11a * -* 33604 Bielefeld * -* phone: ++49 +521 290471 * -* email: aeglos@valinor.owl.de * +* (c) 1994-2001 Artsoft Entertainment * +* Holger Schemel * +* Detmolder Strasse 189 * +* 33604 Bielefeld * +* Germany * +* e-mail: info@artsoft.org * *----------------------------------------------------------* -* types.h * +* types.h * ***********************************************************/ #ifndef TYPES_H #define TYPES_H +#include +#include +#include +#include + typedef unsigned char boolean; typedef unsigned char byte; @@ -22,4 +27,23 @@ typedef unsigned char byte; #define TRUE (!FALSE) #endif +#ifndef MIN +#define MIN(a,b) ((a) < (b) ? (a) : (b)) +#endif + +#ifndef MAX +#define MAX(a,b) ((a) > (b) ? (a) : (b)) +#endif + +#ifndef ABS +#define ABS(a) ((a) < 0 ? -(a) : (a)) +#endif + +#ifndef SIGN +#define SIGN(a) ((a) < 0 ? -1 : ((a)>0 ? 1 : 0)) +#endif + +#define SIZEOF_ARRAY(array, type) (sizeof(array) / sizeof(type)) +#define SIZEOF_ARRAY_INT(array) SIZEOF_ARRAY(array, int) + #endif /* TYPES_H */