-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
21 lines (19 loc) · 1.01 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dvan-der <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/15 08:15:05 by dvan-der #+# #+# */
/* Updated: 2022/01/31 14:38:49 by dvan-der ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
int main(int argc, char *argv[])
{
if (input_handler(argc, argv))
return (1);
write(2, "Error\n", 6);
return (0);
}