aboutsummaryrefslogtreecommitdiff
path: root/test/072_coord_co
diff options
context:
space:
mode:
Diffstat (limited to 'test/072_coord_co')
-rw-r--r--test/072_coord_co/coord_co_tests.c6
1 files changed, 2 insertions, 4 deletions
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 @@
1#include "../test.h" 1#include "../test.h"
2 2
3int64_t coord_fast_co(cube_fast_t); 3int64_t coord_co(cube_t);
4 4
5int main(void) { 5int main(void) {
6 char str[STRLENMAX]; 6 char str[STRLENMAX];
7 cube_t cube; 7 cube_t cube;
8 cube_fast_t fast;
9 int64_t result; 8 int64_t result;
10 9
11 fgets(str, STRLENMAX, stdin); 10 fgets(str, STRLENMAX, stdin);
12 cube = readcube("H48", str); 11 cube = readcube("H48", str);
13 fast = cubetofast(cube);
14 12
15 result = coord_fast_co(fast); 13 result = coord_co(cube);
16 14
17 printf("%" PRId64 "\n", result); 15 printf("%" PRId64 "\n", result);
18 16

Generated with cgit - Back to sebastiano.tronto.net