From d54eb443a8b16f839531a4a129a559c2be7f9ba6 Mon Sep 17 00:00:00 2001 From: fdai7782 Date: Wed, 7 Feb 2024 17:59:19 +0000 Subject: [PATCH] Updated file name from main_taschenrechner.c to main_calculator.c --- src/main/c/{main_taschenrechner.c => main_calculator.c} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/main/c/{main_taschenrechner.c => main_calculator.c} (99%) diff --git a/src/main/c/main_taschenrechner.c b/src/main/c/main_calculator.c similarity index 99% rename from src/main/c/main_taschenrechner.c rename to src/main/c/main_calculator.c index 414021b..76c9a10 100644 --- a/src/main/c/main_taschenrechner.c +++ b/src/main/c/main_calculator.c @@ -3,7 +3,7 @@ #include #include -#include "taschenrechner.h" +#include "calculator.h" double add(double a, double b) { @@ -1373,4 +1373,4 @@ int displayMenu(){ printf("\n0: Exit calculator\n"); return 1; // return 1 to check if the function works -} \ No newline at end of file +}