aboutsummaryrefslogtreecommitdiff
path: root/test/071_coord_eo/coord_eo_tests.c
blob: a0b868af0b1b3ca4096363e4b5ed4c3b811f34f7 (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_eo(cube);

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

	return 0;
}

Generated with cgit - Back to sebastiano.tronto.net