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