-
Notifications
You must be signed in to change notification settings - Fork 0
/
push_swap.c
21 lines (18 loc) · 1009 Bytes
/
push_swap.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* push_swap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ted-dafi <ted-dafi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/04 20:40:49 by ted-dafi #+# #+# */
/* Updated: 2022/03/19 23:35:49 by ted-dafi ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
int main(int ac, char **av)
{
t_all all;
make_stack(ac, av, &all, 1);
sort_that(&all);
}