From d52bd1c709456164b167cc7389b641b690c97ee5 Mon Sep 17 00:00:00 2001 From: 0scar Date: Mon, 5 Feb 2024 18:57:05 +0100 Subject: Organize the header files --- include/engine/list.h | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 include/engine/list.h (limited to 'include/engine/list.h') diff --git a/include/engine/list.h b/include/engine/list.h deleted file mode 100644 index 37857f0..0000000 --- a/include/engine/list.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef ENGINE_LIST_H -#define ENGINE_LIST_H - -#define DEFINE_LLIST(type) \ - struct List_##type { \ - type value; \ - struct List_##type* next; \ - /* Force the user to add `;` for style consistency */ \ - } List_##type - -#endif -- cgit v1.3