From 376ced0c85aa7f45df536e1632b12d1d79d53846 Mon Sep 17 00:00:00 2001 From: Ronja Awe Date: Sun, 29 Jan 2023 17:36:37 +0100 Subject: [PATCH] =?UTF-8?q?refactoring:=20funktionsname=20ge=C3=A4ndert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/c/raetselronja.c | 2 +- src/c/raetselronja.h | 2 +- test/c/test_raetselronja.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/c/raetselronja.c b/src/c/raetselronja.c index bfc0f2a..235d170 100644 --- a/src/c/raetselronja.c +++ b/src/c/raetselronja.c @@ -36,7 +36,7 @@ int zahlenraetsel(int input[], int loesung, int n) { } -int raetselaufruf() { +int aufrufzahlenraetsel() { int loesung = 0; int n = 0; diff --git a/src/c/raetselronja.h b/src/c/raetselronja.h index abdd77a..2812df2 100644 --- a/src/c/raetselronja.h +++ b/src/c/raetselronja.h @@ -2,7 +2,7 @@ #define RAETSELRONJA_H int zahlenraetsel(int input[], int loesung, int n); -int raetselaufruf(); +int aufrufzahlenraetsel(); int armdruecken(int gegner, int spieler); int blackjack(int spieler, int gegner, int janein); diff --git a/test/c/test_raetselronja.c b/test/c/test_raetselronja.c index 6d4f293..5509e2d 100644 --- a/test/c/test_raetselronja.c +++ b/test/c/test_raetselronja.c @@ -69,7 +69,7 @@ void test_runRaetselTestAufruf(void){ userInput_ExpectAndReturn(1); - int result = raetselaufruf(); + int result = aufrufzahlenraetsel(); TEST_ASSERT_EQUAL_INT(1, result); }