summaryrefslogtreecommitdiff
path: root/sorting.c
diff options
context:
space:
mode:
authorDominik Kaiser2024-04-16 09:38:38 +0200
committerGitHub2024-04-16 09:38:38 +0200
commit571c2f537954fd0d5deb616380276d1d23049aa9 (patch)
treec10c0e4533bc12aeea776071120efaca9dc2bda1 /sorting.c
parent4f288f94c8ec8ced5200d2e4e5713d9b119aed48 (diff)
parent50e53dbdf4e6e6ec7d1514cc44fa06e689a584b7 (diff)
downloadpush_swap-571c2f537954fd0d5deb616380276d1d23049aa9.tar.gz
push_swap-571c2f537954fd0d5deb616380276d1d23049aa9.zip
Merge pull request #2 from dpu-kaiser/simplify-args
Simplify args
Diffstat (limited to 'sorting.c')
-rw-r--r--sorting.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sorting.c b/sorting.c
index f04304f..8f5d31f 100644
--- a/sorting.c
+++ b/sorting.c
@@ -6,14 +6,13 @@
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/13 15:04:19 by dkaiser #+# #+# */
-/* Updated: 2024/04/15 17:54:23 by dkaiser ### ########.fr */
+/* Updated: 2024/04/16 09:27:53 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
-
-t_list *stack_sort(t_stack *stack_a, t_stack *stack_b)
+void stack_sort(t_psdata *data)
{
- return NULL;
+
}