Browse Source

Commit 4 - func willkomen hinzufügen

remotes/origin/peter^2
Peter Wiebe 11 months ago
parent
commit
5f115df684
  1. 6
      src/main/c/hangman.c

6
src/main/c/hangman.c

@ -7,13 +7,19 @@
void protokoll(); void protokoll();
void clear_screen(); void clear_screen();
void willkommen();
void protokoll(){ void protokoll(){
clear_screen(); clear_screen();
willkommen();
} }
void clear_screen() { void clear_screen() {
system("clear"); system("clear");
// system("cls"); // fuer Windows // system("cls"); // fuer Windows
// system("clear"); // fuer UNIX/Linux // system("clear"); // fuer UNIX/Linux
}
void willkommen(){
//Druecke Enter zun fortfahren
} }
Loading…
Cancel
Save