git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12959
d7cf8633-e32d-0410-b094-
e92efae38249
// com_list.c - generic doubly linked list interface, inspired by Linux list.h
+#ifndef LIST_H
+#define LIST_H
+
#include <stddef.h>
typedef struct llist_s
void List_Splice_Tail(const llist_t *list, llist_t *head);
qbool List_IsFirst(llist_t *list, llist_t *start);
qbool List_IsLast(llist_t *list, llist_t *start);
-qbool List_IsEmpty(const llist_t *list);
\ No newline at end of file
+qbool List_IsEmpty(const llist_t *list);
+
+#endif
+#ifndef HOST_H
+#define HOST_H
+
typedef enum host_state_e
{
host_shutdown,