blob: 617a6f4c0ebd61744bae0bdce4ab743d2680d11a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "board.h"
/**
* @brief Diewertje game solver
*
* @param Board* game board to decide next move for
*
* @return int Column to place disc in
*/
int diewertje(Board*);
|