diff options
Diffstat (limited to 'test/032_invertmoves/invertmoves_tests.c')
| -rw-r--r-- | test/032_invertmoves/invertmoves_tests.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/test/032_invertmoves/invertmoves_tests.c b/test/032_invertmoves/invertmoves_tests.c deleted file mode 100644 index d791524..0000000 --- a/test/032_invertmoves/invertmoves_tests.c +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | #include "../test.h" | ||
| 2 | |||
| 3 | #define MAXMOVES 20 | ||
| 4 | |||
| 5 | int64_t readmoves(const char *, int, uint8_t *); | ||
| 6 | void writemoves(size_t n, uint8_t [n], size_t m, char [m]); | ||
| 7 | void invertmoves(size_t n, const uint8_t [n], uint8_t [n]); | ||
| 8 | |||
| 9 | void run(void) { | ||
| 10 | char movestr[STRLENMAX], outstr[STRLENMAX]; | ||
| 11 | uint8_t moves[MAXMOVES], ret[MAXMOVES]; | ||
| 12 | int c; | ||
| 13 | |||
| 14 | fgets(movestr, STRLENMAX, stdin); | ||
| 15 | c = readmoves(movestr, MAXMOVES, moves); | ||
| 16 | |||
| 17 | invertmoves(c, moves, ret); | ||
| 18 | writemoves(c, ret, STRLENMAX, outstr); | ||
| 19 | |||
| 20 | printf("%s\n", outstr); | ||
| 21 | } | ||
