diff options
| author | Dominik Kaiser | 2024-04-13 15:09:19 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2024-04-13 15:09:19 +0200 |
| commit | 9585e1d336c6a1581b335798762172314de1fefb (patch) | |
| tree | d38b35b0f14c62249db79c95c6726d69c569e426 /sorting.c | |
| parent | e8e671060271e9471b37aedb712d30855ff9df8c (diff) | |
| download | push_swap-9585e1d336c6a1581b335798762172314de1fefb.tar.gz push_swap-9585e1d336c6a1581b335798762172314de1fefb.zip | |
Add sorting function (without any sorting yet)
Diffstat (limited to 'sorting.c')
| -rw-r--r-- | sorting.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sorting.c b/sorting.c new file mode 100644 index 0000000..3624ae5 --- /dev/null +++ b/sorting.c @@ -0,0 +1,18 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* sorting.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2024/04/13 15:04:19 by dkaiser #+# #+# */ +/* Updated: 2024/04/13 15:06:33 by dkaiser ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "push_swap.h" + +void stack_sort(t_list **stack_a, t_list **stack_b, t_list **cmds) +{ + +} |
