summaryrefslogtreecommitdiff
path: root/include/engine/list.h
diff options
context:
space:
mode:
author0scar <qgt268@alumni.ku.dk>2024-02-05 17:57:05 +0000
committer0scar <qgt268@alumni.ku.dk>2024-02-05 17:57:05 +0000
commitd52bd1c709456164b167cc7389b641b690c97ee5 (patch)
tree7cc8ccb610bfaa72b83fdf878b23e6efd892d73e /include/engine/list.h
parent4813a8dde26422657c07ae03fe2b47a6b92f0935 (diff)
Organize the header files
Diffstat (limited to 'include/engine/list.h')
-rw-r--r--include/engine/list.h11
1 files changed, 0 insertions, 11 deletions
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