I\'m trying to code a tic tac toe game. This is my struct game:
typedef struct { char tabuleiro[3][3]; int casas[9]; jogador* p; } jogo;