Browse Source

Commit 4 - func willkomen hinzufügen

main^2
Peter Wiebe 11 months ago
committed by Peter Wiebe
parent
commit
d052a17ca4
  1. 6
      src/main/c/hangman.c

6
src/main/c/hangman.c

@ -6,9 +6,11 @@
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() {
@ -16,3 +18,7 @@ void clear_screen() {
// 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