aboutsummaryrefslogtreecommitdiff
path: root/test/074_coord_esep/coord_esep_tests.c
blob: 289bdb6c0284fb174440dd5d6c0adacd8c7494b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "../test.h"

uint64_t coord_esep(cube_t);

void run(void) {
	char str[STRLENMAX];
	oriented_cube_t cube;
	uint64_t result;

	fgets(str, STRLENMAX, stdin);
	cube = readcube(str);

	result = coord_esep(cube.cube);

	printf("%" PRIu64 "\n", result);
}

Generated with cgit - Back to sebastiano.tronto.net