You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
226 B
8 lines
226 B
#ifndef SCHACHBRETT_H
|
|
#define SCHACHBRETT_H
|
|
|
|
char** Schachbrett_erstellen();
|
|
void print_Schachfeld(char** Brett, int Reihen, int Spalten);
|
|
void Schachbrettspeicher_freigeben(char** Brett, int Reihen);
|
|
|
|
#endif // SCHACHBRETT_H
|