modifying some preset for the tabs and adding some functions in the main for do the test

This commit is contained in:
Maoake
2025-12-22 11:06:34 +00:00
parent a7cbd18db6
commit e563d663ec
7 changed files with 141 additions and 20 deletions

View File

@@ -12,7 +12,12 @@
#include "push_swap.h"
void bucket_algo(void)
void bucket_algo(t_stacks *piles)
{
int range;
t_tab *preset;
range = range_bucket(piles->a);
preset = get_tabs(piles->a, range);
return ;
}