diff --git a/src/c/funktionen.c b/src/c/funktionen.c index 8b9dcbf..1796b2c 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -77,3 +77,7 @@ float floorValue(float x) { return floor(x); } +// Function to calculate the ceiling value of a number +float ceilingValue(float x) { +return ceil(x); +}