From a4598b740fe4b8350b7d09a575c793113c8fde2b Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sat, 13 Apr 2024 15:57:23 +0200 Subject: Some renaming, moved stuff around --- test/050_compose/compose_tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/050_compose') diff --git a/test/050_compose/compose_tests.c b/test/050_compose/compose_tests.c index 3bf6c34..5383733 100644 --- a/test/050_compose/compose_tests.c +++ b/test/050_compose/compose_tests.c @@ -5,9 +5,9 @@ int main(void) { cube_t c1, c2, c3; fgets(str, STRLENMAX, stdin); - c1 = readcube("H48", str); + c1 = cube_read("H48", str); fgets(str, STRLENMAX, stdin); - c2 = readcube("H48", str); + c2 = cube_read("H48", str); c3 = cube_compose(c1, c2); @@ -16,7 +16,7 @@ int main(void) { } else if (!cube_solvable(c3)) { printf("Composed cube is not solvable\n"); } else { - writecube("H48", c3, str); + cube_write("H48", c3, str); printf("%s\n", str); } -- cgit v1.3