push_swap/include/app/moves.h

24 lines
1.1 KiB
C
Raw Permalink Normal View History

2024-01-11 21:28:36 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* moves.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/11 16:13:08 by maiboyer #+# #+# */
2024-01-29 22:45:54 +01:00
/* Updated: 2024/01/29 19:07:15 by maiboyer ### ########.fr */
2024-01-11 21:28:36 +01:00
/* */
/* ************************************************************************** */
#ifndef MOVES_H
2024-01-23 13:19:18 +01:00
# define MOVES_H
2024-01-11 21:28:36 +01:00
2024-01-23 13:19:18 +01:00
# include "app/state.h"
# include "app/types/type_move.h"
# include "me/types.h"
2024-01-11 21:28:36 +01:00
2024-01-29 22:45:54 +01:00
void do_move(t_move m, t_state *s);
t_const_str get_str_for_move(t_move m);
2024-01-11 21:28:36 +01:00
#endif /* MOVES_H */