diff options
| author | Mikkel Thestrup <mikkel_thestrup@mithe.dk> | 2025-11-29 20:46:42 +0100 |
|---|---|---|
| committer | Mikkel Thestrup <mikkel_thestrup@mithe.dk> | 2025-11-29 20:46:42 +0100 |
| commit | 892b47ea8b73882d98de0a7fddb358a9ddafdf9e (patch) | |
| tree | 23ee473548a438c447a3fde6cb3a136bf28f86e3 /src/LinkedList.h | |
| parent | 7e9c085f4fb9988490dc507ff2a9a121c80eb195 (diff) | |
| download | cycle-detector-892b47ea8b73882d98de0a7fddb358a9ddafdf9e.tar.gz cycle-detector-892b47ea8b73882d98de0a7fddb358a9ddafdf9e.zip | |
relaced tabs with spaces
Diffstat (limited to 'src/LinkedList.h')
| -rw-r--r-- | src/LinkedList.h | 12 |
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. |