From c5c5017a335208881e27fc8f72c1d0145a04622a Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sun, 9 Jun 2024 12:43:49 +0200 Subject: Remvoed cube_fast_t and more. More cleaning up to do. --- test/072_coord_co/coord_co_tests.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'test/072_coord_co') diff --git a/test/072_coord_co/coord_co_tests.c b/test/072_coord_co/coord_co_tests.c index 8461324..c7af24c 100644 --- a/test/072_coord_co/coord_co_tests.c +++ b/test/072_coord_co/coord_co_tests.c @@ -1,18 +1,16 @@ #include "../test.h" -int64_t coord_fast_co(cube_fast_t); +int64_t coord_co(cube_t); int main(void) { char str[STRLENMAX]; cube_t cube; - cube_fast_t fast; int64_t result; fgets(str, STRLENMAX, stdin); cube = readcube("H48", str); - fast = cubetofast(cube); - result = coord_fast_co(fast); + result = coord_co(cube); printf("%" PRId64 "\n", result); -- cgit v1.3