From 12b1a9c4fded8aaf64c832e274875e2fef7e5c92 Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 19 Dec 2025 12:04:28 +0100 Subject: [PATCH] Fixed checker small error case --- main_checker.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main_checker.c b/main_checker.c index b4174a5..69047e6 100644 --- a/main_checker.c +++ b/main_checker.c @@ -6,7 +6,7 @@ /* By: clefrere +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/02 22:15:12 by agilliar #+# #+# */ -/* Updated: 2025/12/18 17:11:15 by agilliar ### ########.fr */ +/* Updated: 2025/12/19 12:03:38 by agilliar ### ########.fr */ /* */ /* ************************************************************************** */ @@ -22,12 +22,14 @@ int main(int argc, char **argv) t_stacks stacks; int i; t_ops ops; + t_frac _disorder; i = 1; stacks = stacks_new(); while (i < argc) arg_step(argv[i++], &stacks); ops = ops_stackops(); + output_disorder(&_disorder); stacks_apply(&stacks, &ops, &algorithm_stdin); output_flush(); eoutput_flush(); -- 2.51.0