summaryrefslogtreecommitdiff
path: root/include/engine/list.h
diff options
context:
space:
mode:
author0scar <qgt268@alumni.ku.dk>2023-10-30 22:11:54 +0000
committer0scar <qgt268@alumni.ku.dk>2023-10-30 22:12:34 +0000
commit5c0311ff3095a5dd30fb15db54aa394498dd2bcf (patch)
tree2abb0e3dc145e4372fcf07aeeb736279d00471e5 /include/engine/list.h
parent3e3fe3d42206dc14baca2f50445e6fe8bb2d2480 (diff)
The great formattening!
Diffstat (limited to 'include/engine/list.h')
-rw-r--r--include/engine/list.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/engine/list.h b/include/engine/list.h
index 5d3f80b..37857f0 100644
--- a/include/engine/list.h
+++ b/include/engine/list.h
@@ -1,11 +1,11 @@
#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
+#define DEFINE_LLIST(type) \
+ struct List_##type { \
+ type value; \
+ struct List_##type* next; \
+ /* Force the user to add `;` for style consistency */ \
+ } List_##type
#endif