Making systems a linked list; Adding the size in the position component

This commit is contained in:
Tristan Roux
2019-12-05 11:22:13 +01:00
parent 2a27579733
commit 83a9b8f9ef
16 changed files with 134 additions and 51 deletions
+16
View File
@@ -0,0 +1,16 @@
/*
** EPITECH PROJECT, 2019
** MUL_my_runner_2019
** File description:
** list
*/
typedef struct gc_list gc_list;
#pragma once
struct gc_list
{
void *data;
gc_list *next;
};