diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-15 14:19:33 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-15 14:19:33 +0100 |
| commit | 7dce30ca733f6b310f997c4515e486718b273d44 (patch) | |
| tree | 97f6d7e8776accecd2e50a5df73c1237a0a1dabe /src/push_swap | |
| parent | f061613650f5e7c5e260a4d9a1ca1b1d80ca2f2c (diff) | |
| download | push_swap-7dce30ca733f6b310f997c4515e486718b273d44.tar.gz push_swap-7dce30ca733f6b310f997c4515e486718b273d44.tar.bz2 push_swap-7dce30ca733f6b310f997c4515e486718b273d44.zip | |
WIP: Checker base
Diffstat (limited to 'src/push_swap')
| -rw-r--r-- | src/push_swap/main.c | 4 | ||||
| -rw-r--r-- | src/push_swap/push_swap.h | 4 |
2 files changed, 8 insertions, 0 deletions
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 |
