remove inputs

This commit is contained in:
2024-12-02 12:32:14 +01:00
commit 60acac0231
247 changed files with 9071 additions and 0 deletions

23
2022/5/structs.h Normal file
View File

@ -0,0 +1,23 @@
#ifndef STRUCTS_H
# define STRUCTS_H
typedef struct s_crate
{
char letter;
struct s_crate *prev;
} t_crate;
typedef struct s_stack_list
{
t_crate *crate;
struct s_stack_list *next;
} t_stack_list;
typedef struct s_instruction
{
int nb;
int from;
int to;
} t_instruction;
#endif