diff options
Diffstat (limited to 'test/074_coord_esep')
| -rw-r--r-- | test/074_coord_esep/coord_esep_tests.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/074_coord_esep/coord_esep_tests.c b/test/074_coord_esep/coord_esep_tests.c index 679e1c6..289bdb6 100644 --- a/test/074_coord_esep/coord_esep_tests.c +++ b/test/074_coord_esep/coord_esep_tests.c | |||
| @@ -1,16 +1,16 @@ | |||
| 1 | #include "../test.h" | 1 | #include "../test.h" |
| 2 | 2 | ||
| 3 | int64_t coord_esep(cube_t); | 3 | uint64_t coord_esep(cube_t); |
| 4 | 4 | ||
| 5 | void run(void) { | 5 | void run(void) { |
| 6 | char str[STRLENMAX]; | 6 | char str[STRLENMAX]; |
| 7 | oriented_cube_t cube; | 7 | oriented_cube_t cube; |
| 8 | int64_t result; | 8 | uint64_t result; |
| 9 | 9 | ||
| 10 | fgets(str, STRLENMAX, stdin); | 10 | fgets(str, STRLENMAX, stdin); |
| 11 | cube = readcube(str); | 11 | cube = readcube(str); |
| 12 | 12 | ||
| 13 | result = coord_esep(cube.cube); | 13 | result = coord_esep(cube.cube); |
| 14 | 14 | ||
| 15 | printf("%" PRId64 "\n", result); | 15 | printf("%" PRIu64 "\n", result); |
| 16 | } | 16 | } |
