Push_swap/main.c
2022-01-18 06:57:33 +01:00

22 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/25 23:15:43 by apommier #+# #+# */
/* Updated: 2022/01/17 21:27:14 by apommier ### ########.fr */
/* */
/* ************************************************************************** */
#include "Utils/push_swap.h"
int main(int argc, char *argv[])
{
if (argc == 1)
return (1);
push_swap(argc, argv);
return (1);
}