diff --git a/src/c/funktionen.c b/src/c/funktionen.c index b5ee404..e2b2251 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -2,3 +2,10 @@ #include #include #include "funktionen.h" + +// Function to calculate the square of a number +float square(float x) { +return x * x; +} + +