From 22496cf75b20cbcde0edb7ad740abf7b206c8c33 Mon Sep 17 00:00:00 2001 From: fdai7723 Date: Thu, 8 Feb 2024 12:57:19 +0000 Subject: [PATCH] =?UTF-8?q?Misc.c/Tutorial.h=20fixed,=20Hendrik=20Vo=C3=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Tutorial.c | 2 +- src/Tutorial.h | 1 + test/test_Misc.c | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Tutorial.c b/src/Tutorial.c index c259560..367a81a 100644 --- a/src/Tutorial.c +++ b/src/Tutorial.c @@ -10,7 +10,7 @@ void nach_Tutorial_fragen(int runden_zaehler){ char * abfrage; printf("Do you need a Tutorial?\nY ?\nN ?\n"); - abfrage = getuserinput(); + abfrage = getUserInput(); if (abfrage == 'Y'){ // Regelwerk ausgeben } else { diff --git a/src/Tutorial.h b/src/Tutorial.h index 7dd43a7..71fe00f 100644 --- a/src/Tutorial.h +++ b/src/Tutorial.h @@ -5,6 +5,7 @@ #include "Spieler.h" #include #include +#include "Input.h" void nach_Tutorial_fragen(int runden_Zaehler); diff --git a/test/test_Misc.c b/test/test_Misc.c index 1e62ef3..fa5b6e4 100644 --- a/test/test_Misc.c +++ b/test/test_Misc.c @@ -6,6 +6,7 @@ #include #include #include +#include "Input.h" void test_king_alive() { char** brett = malloc(8 * sizeof(char*));