diff --git a/src/Schachbrett.c b/src/Schachbrett.c index dad4b50..e44ba02 100644 --- a/src/Schachbrett.c +++ b/src/Schachbrett.c @@ -46,6 +46,15 @@ char** Schachbrett_erstellen() { return Brett; } +void print_Schachfeld(char** Brett, int Reihen, int Spalten) { + for (int i = 0; i < Reihen; i++) { + for (int j = 0; j < Spalten; j++) { + printf(" %c ", Brett[i][j]); + } + printf("\n"); + } +} + void Schachbrettspeicher_freigeben(char** Brett, int Reihen) { if (Brett == NULL) { return;