From 9d98dcaf0e90f5e7e96cf10d7d9169c7d3e4f331 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 19:01:50 +0100 Subject: [PATCH] Refactoring: Funtionsname kurzer --- src/main/duellist-spielesammlung-projekt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 3498813..b314002 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -388,7 +388,7 @@ int zufallszahl(int min, int max) { return rand() % (max - min + 1) + min; } -int addition(int a, int b) { +int add(int a, int b) { return a + b; }