aboutsummaryrefslogtreecommitdiff
path: root/test/032_countmoves/countmoves_tests.c
blob: b2c994607b36e00890355e61592bbb666abdb8ec (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "../test.h"

int64_t countmoves(const char *);

void run(void) {
	char movestr[STRLENMAX];

	fgets(movestr, STRLENMAX, stdin);

	printf("%" PRId64 "\n", countmoves(movestr));
}

Generated with cgit - Back to sebastiano.tronto.net