From fb28b1aefe0024b29cbd5f1b5046ab27a730d6af Mon Sep 17 00:00:00 2001 From: Greg Wells Date: Thu, 15 May 2025 18:45:17 -0400 Subject: [PATCH] create linked list struct --- src/lists/gryphn_linked_list.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/lists/gryphn_linked_list.h b/src/lists/gryphn_linked_list.h index e69de29..f4f51fa 100644 --- a/src/lists/gryphn_linked_list.h +++ b/src/lists/gryphn_linked_list.h @@ -0,0 +1,7 @@ +#pragma once + +// why would one use a linked list +typedef struct gnLinkedList { + void* data; + gnLinkedList* nextNode; +} gnLinkedList;