From 2edc8c01fba711f4410279b59c784a43cf2dde41 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sun, 8 Oct 2023 14:04:11 +0200 Subject: Added write to SRC format --- test/04_compose/compose_tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/04_compose') diff --git a/test/04_compose/compose_tests.c b/test/04_compose/compose_tests.c index 575c2c9..a4a5f00 100644 --- a/test/04_compose/compose_tests.c +++ b/test/04_compose/compose_tests.c @@ -11,9 +11,9 @@ int main() { cube_t c1, c2, c3; fgets(str, STRLENMAX, stdin); - c1 = readcube(str); + c1 = readcube(H48, str); fgets(str, STRLENMAX, stdin); - c2 = readcube(str); + c2 = readcube(H48, str); c3 = compose(c1, c2); @@ -22,7 +22,7 @@ int main() { } else if (!issolvable(c3)) { printf("Composed cube is not solvable\n"); } else { - writecube(c3, str); + writecube(H48, c3, str); printf("%s\n", str); } -- cgit v1.3