changed "http" to "https" in URLs
[rocksndiamonds.git] / src / libgame / types.h
index 56a6d0070e913f6217023af60eb37f8a24a213e7..62752f1fe8007ca150a4c3513a97c03e97cda56d 100644 (file)
@@ -1,27 +1,45 @@
-/***********************************************************
-* Artsoft Retro-Game Library                               *
-*----------------------------------------------------------*
-* (c) 1994-2001 Artsoft Entertainment                      *
-*               Holger Schemel                             *
-*               Detmolder Strasse 189                      *
-*               33604 Bielefeld                            *
-*               Germany                                    *
-*               e-mail: info@artsoft.org                   *
-*----------------------------------------------------------*
-* types.h                                                  *
-***********************************************************/
+// ============================================================================
+// Artsoft Retro-Game Library
+// ----------------------------------------------------------------------------
+// (c) 1995-2014 by Artsoft Entertainment
+//                         Holger Schemel
+//                 info@artsoft.org
+//                 https://www.artsoft.org/
+// ----------------------------------------------------------------------------
+// types.h
+// ============================================================================
 
 #ifndef TYPES_H
 #define TYPES_H
 
-typedef unsigned char boolean;
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <string.h>
+#include <sys/types.h>
+
+
+#if !defined(PLATFORM_WIN32)
+typedef int boolean;
 typedef unsigned char byte;
+#endif
 
-#ifndef FALSE
-#define FALSE          0
-#define TRUE           (!FALSE)
+#ifdef TRUE
+#undef TRUE
+#endif
+
+#ifdef FALSE
+#undef FALSE
+#endif
+
+#ifdef AUTO
+#undef AUTO
 #endif
 
+#define TRUE           1
+#define FALSE          0
+#define AUTO           -1
+
 #ifndef MIN
 #define MIN(a,b)       ((a) < (b) ? (a) : (b))
 #endif
@@ -35,10 +53,27 @@ typedef unsigned char byte;
 #endif
 
 #ifndef SIGN
-#define SIGN(a)                ((a) < 0 ? -1 : ((a)>0 ? 1 : 0))
+#define SIGN(a)                ((a) < 0 ? -1 : ((a) > 0 ? 1 : 0))
+#endif
+
+#ifndef ODD
+#define ODD(a)         (((a) & 1) == 1)
 #endif
 
-#define SIZEOF_ARRAY(array, type)      (sizeof(array) / sizeof(type))
-#define SIZEOF_ARRAY_INT(array)                SIZEOF_ARRAY(array, int)
+#ifndef EVEN
+#define EVEN(a)                (((a) & 1) == 0)
+#endif
+
+#define ARRAY_SIZE(array)              (sizeof(array) / sizeof(array[0]))
+
+
+struct ListNode
+{
+  char *key;
+  void *content;
+  struct ListNode *prev;
+  struct ListNode *next;
+};
+typedef struct ListNode ListNode;
 
-#endif /* TYPES_H */
+#endif // TYPES_H