aboutsummaryrefslogtreecommitdiff
path: root/test/072_coord_co/coord_co_tests.c
blob: 2924996821c23c5482007fb5bb7b75a4abd210df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "../test.h"

int main(void) {
	char str[STRLENMAX];
	cube_t cube;
	int64_t result;

	fgets(str, STRLENMAX, stdin);
	cube = cube_read("H48", str);

	result = cube_coord_co(cube);

	printf("%" PRId64 "\n", result);

	return 0;
}

Generated with cgit - Back to sebastiano.tronto.net