aboutsummaryrefslogtreecommitdiff
path: root/src/LinkedList.h
diff options
context:
space:
mode:
authorMikkel Thestrup <mikkel_thestrup@mithe.dk>2025-11-29 20:46:42 +0100
committerMikkel Thestrup <mikkel_thestrup@mithe.dk>2025-11-29 20:46:42 +0100
commit892b47ea8b73882d98de0a7fddb358a9ddafdf9e (patch)
tree23ee473548a438c447a3fde6cb3a136bf28f86e3 /src/LinkedList.h
parent7e9c085f4fb9988490dc507ff2a9a121c80eb195 (diff)
downloadcycle-detector-892b47ea8b73882d98de0a7fddb358a9ddafdf9e.tar.gz
cycle-detector-892b47ea8b73882d98de0a7fddb358a9ddafdf9e.zip
relaced tabs with spaces
Diffstat (limited to '')
-rw-r--r--src/LinkedList.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/LinkedList.h b/src/LinkedList.h
index f30d44b..57538e2 100644
--- a/src/LinkedList.h
+++ b/src/LinkedList.h
@@ -8,15 +8,15 @@ typedef struct LinkedList LinkedList;
typedef struct LinkedListNode LinkedListNode;
struct LinkedList {
- LinkedListNode *head;
- LinkedListNode *tail;
- int size;
+ LinkedListNode *head;
+ LinkedListNode *tail;
+ int size;
};
struct LinkedListNode {
- LinkedListNode *next;
- LinkedListNode *prev;
- void *data;
+ LinkedListNode *next;
+ LinkedListNode *prev;
+ void *data;
};
// Allocate and initialize an empty linked list.