blob: 075b3f86472dc70ac9bcbca7331b25387476950e (
plain)
1
2
3
4
5
6
7
8
9
|
#include <tak.h>
#include <stdio.h> // for sprintf (in a single place! grrr)
#include <string.h> // for strnlen, strncmp, and strcpy
// NOTE: We assume that board_size matches TPS size.
enum TPS_RESULT load_tps(tak_state_p state, char *in_tps);
void generate_tps(tak_state_p state, char *out_tps);
|