From 7dce30ca733f6b310f997c4515e486718b273d44 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 15 Jan 2020 14:19:33 +0100 Subject: WIP: Checker base --- src/push_swap/main.c | 4 ++++ src/push_swap/push_swap.h | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 src/push_swap/main.c create mode 100644 src/push_swap/push_swap.h (limited to 'src/push_swap') diff --git a/src/push_swap/main.c b/src/push_swap/main.c new file mode 100644 index 0000000..5019e79 --- /dev/null +++ b/src/push_swap/main.c @@ -0,0 +1,4 @@ +int main(int argc, char **argv) +{ + return 0; +} diff --git a/src/push_swap/push_swap.h b/src/push_swap/push_swap.h new file mode 100644 index 0000000..0e553e0 --- /dev/null +++ b/src/push_swap/push_swap.h @@ -0,0 +1,4 @@ +#ifndef PUSH_SWAP_H +# define PUSH_SWAP_H + +#endif -- cgit