mirror of
https://github.com/DavidGailleton/42-Push_Swap.git
synced 2026-01-27 16:51:57 +00:00
23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* flags.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mteriier <mteriier@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/07 13:05:52 by mteriier #+# #+# */
|
|
/* Updated: 2026/01/07 13:05:53 by mteriier ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FLAGS_H
|
|
# define FLAGS_H
|
|
|
|
void simple(t_stacks *piles);
|
|
void medium(t_stacks *piles);
|
|
void complex(t_stacks *piles);
|
|
void adaptive(t_stacks *piles);
|
|
void flags(int pos, char **argv, t_stacks *piles);
|
|
|
|
#endif
|