bugfix bintree

This commit is contained in:
maxgrf 2025-12-11 11:49:34 +01:00
parent 14fa468431
commit e4b2c4b8eb
6 changed files with 2 additions and 2 deletions

BIN
bintree.o Normal file

Binary file not shown.

BIN
doble.exe Normal file

Binary file not shown.

BIN
highscore.o Normal file

Binary file not shown.

BIN
numbers.o Normal file

Binary file not shown.

View File

@ -39,7 +39,7 @@ void test_push_and_top(void)
TEST_ASSERT_EQUAL_INT(30, *(int*)top(stack));
clearStack(&stack);
clearStack(stack);
TEST_ASSERT_NULL(stack);
}
@ -72,7 +72,7 @@ void test_clearStack(void)
stack = push(stack, &x);
stack = push(stack, &y);
clearStack(&stack);
clearStack(stack);
TEST_ASSERT_NULL(stack);
}

BIN
timer.o Normal file

Binary file not shown.