From ea0387796a349c91032fbcb10f50c6ad8607b0f6 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 29 Jul 2025 12:12:43 +0200 Subject: All coordinates unsigned --- test/075_set_eo/set_eo_tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/075_set_eo') diff --git a/test/075_set_eo/set_eo_tests.c b/test/075_set_eo/set_eo_tests.c index ef2156d..a0ad3fe 100644 --- a/test/075_set_eo/set_eo_tests.c +++ b/test/075_set_eo/set_eo_tests.c @@ -1,14 +1,14 @@ #include "../test.h" -int64_t coord_eo(cube_t); -void set_eo(cube_t *, int64_t); +uint64_t coord_eo(cube_t); +void set_eo(cube_t *, uint64_t); void pieces(cube_t *, uint8_t [static 8], uint8_t [static 12]); void run(void) { char str[STRLENMAX]; oriented_cube_t cube; uint8_t edge[12], corner[8]; - int64_t eo; + uint64_t eo; fgets(str, STRLENMAX, stdin); cube = readcube(str); -- cgit v1.3