player 58 user/testbin/tictac/tictac.c bool do_move(int player);
player 83 user/testbin/tictac/tictac.c int player;
player 91 user/testbin/tictac/tictac.c player = move % 2 == 0 ? 2 : 1;
player 92 user/testbin/tictac/tictac.c win = do_move(player);
player 95 user/testbin/tictac/tictac.c printf("Player %d, you WON!\n\n", player);
player 213 user/testbin/tictac/tictac.c do_move(int player)
player 221 user/testbin/tictac/tictac.c printf("Player %d (%c), your move\n", player,
player 222 user/testbin/tictac/tictac.c player == X_PLAYER ? 'X' : 'O');
player 251 user/testbin/tictac/tictac.c board[x][y] = player == X_PLAYER ? X_MARKER : O_MARKER;