adding split substr strlen

This commit is contained in:
Maoake Teriierooiterai
2026-01-08 13:50:38 +01:00
parent 2f4498d2c5
commit 8dbf9f6c6e
6 changed files with 21 additions and 6 deletions

View File

@@ -24,11 +24,10 @@ int test1(int argc, char **argv)
piles = NULL;
if (argc > 1)
{
piles = init_big_stacks(argc, argv);
piles = init_piles(argc, argv, 0);
preset = get_tabs(piles->a, range_bucket(piles->a));
bucket_algo(piles, preset, range_bucket(piles->a));
}
free_all(piles);
free(piles);
return (0);
}