From 9c64c9d253fa22b29005ec53dca6fedcead2ae6c Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Fri, 12 Apr 2024 18:51:50 +0200 Subject: Add libft and input handling --- push_swap.h | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) (limited to 'push_swap.h') diff --git a/push_swap.h b/push_swap.h index aa1fb38..0c86ee7 100644 --- a/push_swap.h +++ b/push_swap.h @@ -1,6 +1,35 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* push_swap.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser +enum e_pscmd +{ + SA, + SB, + SS, + PA, + PB, + RA, + RB, + RR, + RRA, + RRB, + RRR +}; +t_list *create_stack(int argc, char *argv[]); #endif // PUSH_SWAP_H -- cgit v1.2.3