aboutsummaryrefslogtreecommitdiff
path: root/test/078_invcoord_esep
diff options
context:
space:
mode:
Diffstat (limited to 'test/078_invcoord_esep')
-rw-r--r--test/078_invcoord_esep/invcoord_esep_tests.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/078_invcoord_esep/invcoord_esep_tests.c b/test/078_invcoord_esep/invcoord_esep_tests.c
index ebf35b0..9945e77 100644
--- a/test/078_invcoord_esep/invcoord_esep_tests.c
+++ b/test/078_invcoord_esep/invcoord_esep_tests.c
@@ -5,15 +5,15 @@ cube_t invcoord_esep(int64_t);
5 5
6void run(void) { 6void run(void) {
7 char str[STRLENMAX]; 7 char str[STRLENMAX];
8 cube_t cube; 8 oriented_cube_t cube;
9 int64_t i; 9 int64_t i;
10 10
11 fgets(str, STRLENMAX, stdin); 11 fgets(str, STRLENMAX, stdin);
12 cube = readcube(str); 12 cube = readcube(str);
13 13
14 i = coord_esep(cube); 14 i = coord_esep(cube.cube);
15 cube = invcoord_esep(i); 15 cube.cube = invcoord_esep(i);
16 i = coord_esep(cube); 16 i = coord_esep(cube.cube);
17 17
18 printf("%" PRId64 "\n", i); 18 printf("%" PRId64 "\n", i);
19} 19}

Generated with cgit - Back to sebastiano.tronto.net