From 2b3539d5b82cfe3933792fcc8f985f535a72eeeb Mon Sep 17 00:00:00 2001 From: fdai7782 Date: Wed, 7 Feb 2024 17:54:05 +0000 Subject: [PATCH] Updated file name from taschenrechner.h to calculator.h --- src/main/c/calculator.h | 6 ++++++ src/main/c/taschenrechner.h | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 src/main/c/calculator.h delete mode 100644 src/main/c/taschenrechner.h diff --git a/src/main/c/calculator.h b/src/main/c/calculator.h new file mode 100644 index 0000000..ec9e08f --- /dev/null +++ b/src/main/c/calculator.h @@ -0,0 +1,6 @@ +#ifndef CALCULATOR_H +#define CALCULATOR_H + +int add(int a, int b); + +#endif // CALCULATOR_H diff --git a/src/main/c/taschenrechner.h b/src/main/c/taschenrechner.h deleted file mode 100644 index 1261fd7..0000000 --- a/src/main/c/taschenrechner.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef TASCHENRECHNER_H -#define TASCHENRECHNER_H - -int add(int a, int b); - -#endif // TASCHENRECHNER_H