-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush_swap.h
More file actions
32 lines (28 loc) · 1.28 KB
/
push_swap.h
File metadata and controls
32 lines (28 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* push_swap.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aylaaouf <aylaaouf@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/02 20:06:57 by aylaaouf #+# #+# */
/* Updated: 2025/01/24 05:11:18 by aylaaouf ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PUSH_SWAP_H
# define PUSH_SWAP_H
# include "algo/algo.h"
# include "libft/libft.h"
# include "parsing/parsing.h"
# include "utils/utils.h"
# include <stddef.h>
# include <stdio.h>
# include <stdlib.h>
// typedef struct s_stack_node
// {
// int value;
// struct s_stack_node *next;
// struct s_stack_node *prev;
// } t_stack_node;
void into_stack(int ac, char **input, t_stack_node **stack_a);
#endif