From 77e1f6df266b3461c25f756d811297c631a796f7 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 4 Feb 2024 21:48:12 +0100 Subject: [PATCH] floorValue Funktion header --- src/c/funktionen.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index 7a45053..40ce9c4 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -28,4 +28,7 @@ float power(float x, float y); // Function to calculate the factorial of a number int factorial(int x); +// Function to calculate the floor value of a number +float floorValue(float x); + #endif \ No newline at end of file