struct define + mkdir stack functions folder

This commit is contained in:
David Gailleton
2025-12-08 14:26:13 +01:00
parent f57b489eb3
commit b26780671b
2 changed files with 23 additions and 0 deletions

23
push_swap.h Normal file
View File

@@ -0,0 +1,23 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* push_swap.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/08 14:18:06 by dgaillet #+# #+# */
/* Updated: 2025/12/08 14:23:40 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
#ifndef PUSH_SWAP_H
# define PUSH_SWAP_H
typedef struct s_stack
{
int value;
s_stack *next;
s_stack *previous;
} t_stack;
#endif