From a6f9a9c078eeceb294838ee5da3d11b94194621c Mon Sep 17 00:00:00 2001 From: fdai7782 Date: Wed, 7 Feb 2024 16:38:00 +0000 Subject: [PATCH] Added the performOperation function in the calculator.h file --- src/main/c/taschenrechner.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/c/taschenrechner.h b/src/main/c/taschenrechner.h index 78ef6a1..6b7955b 100644 --- a/src/main/c/taschenrechner.h +++ b/src/main/c/taschenrechner.h @@ -85,5 +85,6 @@ double ConClock(double time, int startingUnit, int endingUnit); double ConTime(double time, int startingUnit, int endingUnit); +int performOperation(int num1, char operator, int num2); #endif // TASCHENRECHNER_H