Browse Source

bugfix: no console output during debugging

remotes/origin/georg
KaffeeMaus 11 months ago
parent
commit
80f56467ef
  1. 1
      src/main/c/Georg/tictactoe.c

1
src/main/c/Georg/tictactoe.c

@ -12,6 +12,7 @@ struct command COMMANDS[MAX_COMMANDS] = {
}; };
void startTicTacToe(){ void startTicTacToe(){
setbuf(stdout, 0);
printf( "%s\n", getWelcomeMessageTicTacToe() ); printf( "%s\n", getWelcomeMessageTicTacToe() );
printf( "%s\n\n", getRulesMessageTicTacToe() ); printf( "%s\n\n", getRulesMessageTicTacToe() );

Loading…
Cancel
Save