diff --git a/src/c/funktionen.c b/src/c/funktionen.c index c16fd87..6295843 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -91,3 +91,9 @@ float absoluteDifference(float x, float y) { float maximum(float x, float y) { return fmax(x, y); } + +// Function to calculate the minimum of two numbers +float minimum(float x, float y) { + return fmin(x, y); +} +