create linked list struct
This commit is contained in:
@@ -0,0 +1,7 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
// why would one use a linked list
|
||||||
|
typedef struct gnLinkedList {
|
||||||
|
void* data;
|
||||||
|
gnLinkedList* nextNode;
|
||||||
|
} gnLinkedList;
|
||||||
|
Reference in New Issue
Block a user