aboutsummaryrefslogtreecommitdiff
path: root/test/073_coord_csep/coord_csep_tests.c
blob: 588e469c5aad32393f3801fca13c5bb572d1a314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "../test.h"

uint64_t coord_csep(cube_t);

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

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

	result = coord_csep(cube.cube);

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

Generated with cgit - Back to sebastiano.tronto.net