|
|
@ -1,6 +1,8 @@ |
|
|
|
#include <stdlib.h> |
|
|
|
#include <stdio.h> |
|
|
|
|
|
|
|
#include "main.h" |
|
|
|
|
|
|
|
/* |
|
|
|
Spielablauf: |
|
|
|
1. Ausgabe vom Spielfeld |
|
|
@ -101,16 +103,4 @@ void free_Schachfeld(char** Spielfeld, int x) { |
|
|
|
free(Spielfeld); |
|
|
|
} |
|
|
|
|
|
|
|
/* |
|
|
|
int main() { |
|
|
|
int x = 8; |
|
|
|
int y = 8; |
|
|
|
|
|
|
|
char** Spielfeld = create_Schachfeld(x, y); |
|
|
|
print_Schachfeld(Spielfeld, x, y); |
|
|
|
|
|
|
|
free_Schachfeld(Spielfeld, x); |
|
|
|
|
|
|
|
return 0; |
|
|
|
} |
|
|
|
*/ |