Started adding parsing of command-line options

This commit is contained in:
AnnaSnoeijs 2025-06-06 21:31:59 +02:00
parent 89712fc9dc
commit bf1ae99a9a
4 changed files with 56 additions and 15 deletions

5
ui.h
View file

@ -9,12 +9,13 @@ extern void initBoard( void );
extern void updateBoard(
const wins_t wins,
const board_t board,
const move_t move,
const int column
);
extern int askColumn(
const board_t board
,const move_t move
const board_t board,
const move_t move
);
extern move_t askMove( void );