mirror of
https://github.com/CTR-tools/CTR-ModSDK.git
synced 2024-12-02 10:16:20 +00:00
16 lines
222 B
C
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); |