You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int has_anyone_won(int n, char** board, char** checked); // This function calls the 2 others below
int has_white_won(int n, char** board, char i, char j, char** checked);
int has_black_won(int n, char** board, char i, char j, char** checked);
int minimax(int n, char** board, char** checked, char color_for_max, int depth, Listptr alist, int a, int b, char max_player, int difficulty_ext, short *moves_array);
int evaluate_board(int n, char** board, char** checked, char color_for_max);