diff --git a/src/c/ticTacToe.c b/src/c/ticTacToe.c index 6d1d931..3f7c43f 100644 --- a/src/c/ticTacToe.c +++ b/src/c/ticTacToe.c @@ -7,4 +7,8 @@ int something(int a){ return a; +} + +void printPrompt(){ + printf("Let's play Tic Tac Toe. You will use O, I will use X.\nJust enter the number of the field you choose.\nYou start.\n"); } \ No newline at end of file diff --git a/src/c/ticTacToe.h b/src/c/ticTacToe.h index 964ee03..7c268b6 100644 --- a/src/c/ticTacToe.h +++ b/src/c/ticTacToe.h @@ -2,5 +2,6 @@ #define TICTACTOE_H int something(int a); +void printPrompt(); #endif \ No newline at end of file