|
@ -34,4 +34,6 @@ int isColumnFull(char board[ROWS][COLS], int col); |
|
|
int dropPiece(char board[ROWS][COLS], int col, char player); |
|
|
int dropPiece(char board[ROWS][COLS], int col, char player); |
|
|
//Funktionsprototyp für checkWin |
|
|
//Funktionsprototyp für checkWin |
|
|
int checkWin(char board[ROWS][COLS], char player); |
|
|
int checkWin(char board[ROWS][COLS], char player); |
|
|
|
|
|
// Funktionsprototyp für checkHorizontal |
|
|
|
|
|
int checkHorizontal(char board[ROWS][COLS], char player); |
|
|
|
|
|
|