rnd-20020903-1-src
[rocksndiamonds.git] / src / libgame / types.h
index 2ee05af0c7e961cbe16555889488fb1f7d708712..1c527d09faed9d414877114d847be9e1a0eaa419 100644 (file)
@@ -46,4 +46,13 @@ typedef unsigned char byte;
 #define SIZEOF_ARRAY(array, type)      (sizeof(array) / sizeof(type))
 #define SIZEOF_ARRAY_INT(array)                SIZEOF_ARRAY(array, int)
 
+
+struct ListNode
+{
+  char *key;
+  void *content;
+  struct ListNode *next;
+};
+typedef struct ListNode ListNode;
+
 #endif /* TYPES_H */