From fb9ae9e41eaf01b3651395fdd450ac1a4743e592 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 10 Nov 2023 14:44:48 +0100 Subject: Big changes to the interface --- test/040_compose/compose_tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/040_compose/compose_tests.c') diff --git a/test/040_compose/compose_tests.c b/test/040_compose/compose_tests.c index 62f636e..c9c11af 100644 --- a/test/040_compose/compose_tests.c +++ b/test/040_compose/compose_tests.c @@ -15,9 +15,9 @@ int main() { cube_t c1, c2, c3; fgets(str, STRLENMAX, stdin); - c1 = readcube(H48, str); + c1 = readcube("H48", str); fgets(str, STRLENMAX, stdin); - c2 = readcube(H48, str); + c2 = readcube("H48", str); c3 = compose(c1, c2); @@ -26,7 +26,7 @@ int main() { } else if (!issolvable(c3)) { printf("Composed cube is not solvable\n"); } else { - writecube(H48, c3, str); + writecube("H48", c3, str); printf("%s\n", str); } -- cgit v1.3