create linked list struct

This commit is contained in:
Greg Wells
2025-05-15 18:45:17 -04:00
parent 2372b6df37
commit fb28b1aefe

View File

@@ -0,0 +1,7 @@
#pragma once
// why would one use a linked list
typedef struct gnLinkedList {
void* data;
gnLinkedList* nextNode;
} gnLinkedList;