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/010_io_H48_read_write/io_H48_tests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/010_io_H48_read_write') diff --git a/test/010_io_H48_read_write/io_H48_tests.c b/test/010_io_H48_read_write/io_H48_tests.c index 758124e..70d1a91 100644 --- a/test/010_io_H48_read_write/io_H48_tests.c +++ b/test/010_io_H48_read_write/io_H48_tests.c @@ -17,14 +17,14 @@ int main() { for (c = str; (*c = getchar()) != EOF; c++) ; *c = '\0'; - cube = readcube(H48, str); + cube = readcube("H48", str); if (iserror(cube)) { printf("Error reading cube\n"); } else if (!issolvable(cube)) { printf("Cube is not solvable\n"); } else { - writecube(H48, cube, str); + writecube("H48", cube, str); printf("%s\n", str); } -- cgit v1.3