]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - com_list.c
Rename qboolean to qbool
[xonotic/darkplaces.git] / com_list.c
index a28a83dabd4a991a8b1a99a7d34dbcbd3042bdb7..5f8d178d4e4078def324649962581a431613fbe2 100644 (file)
@@ -203,17 +203,17 @@ void List_Splice_Tail(const llist_t *list, llist_t *head)
                __List_Splice(list, head->prev, head);
 }
 
-qboolean List_IsFirst(llist_t *list, llist_t *start)
+qbool List_IsFirst(llist_t *list, llist_t *start)
 {
        return list->prev == start;
 }
 
-qboolean List_IsLast(llist_t *list, llist_t *start)
+qbool List_IsLast(llist_t *list, llist_t *start)
 {
        return list->next == start;
 }
 
-qboolean List_IsEmpty(const llist_t *list)
+qbool List_IsEmpty(const llist_t *list)
 {
        return list->next == list;
 }
\ No newline at end of file