CTR-ModSDK/include/namespace_List.h
2023-05-24 20:02:46 -04:00

16 lines
222 B
C

// complete struct
struct Item
{
struct Item* next;
struct Item* prev;
};
// complete struct
struct LinkedList
{
struct Item* first;
struct Item* last;
int count;
};
_Static_assert(sizeof(struct LinkedList) == 0xC);