diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index ffd7395..4be8edf 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -384,6 +384,9 @@ int minesweeper() { return 1; } + +/*------------------------------------------------------------------------------------------*/ + int zufallszahl(int min, int max) { return rand() % (max - min + 1) + min; } @@ -396,7 +399,7 @@ int minus(int a, int b) { return a - b; } -int multiplication(int a, int b) { +int mal(int a, int b) { return a * b; }