remove inputs
This commit is contained in:
23
2022/5/structs.h
Normal file
23
2022/5/structs.h
Normal 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
|
Reference in New Issue
Block a user