Update header file for both stacks + rotate functions added

This commit is contained in:
David Gailleton
2025-12-08 14:42:55 +01:00
parent b26780671b
commit 430af885a9
2 changed files with 42 additions and 1 deletions

View File

@@ -6,7 +6,7 @@
/* 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 */
/* Updated: 2025/12/08 14:39:22 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
@@ -20,4 +20,10 @@ typedef struct s_stack
s_stack *previous;
} t_stack;
typedef struct s_stacks
{
t_stack *a;
t_stack *b;
} t_stacks;
#endif