From ff2ad41f4eb10f87eb0a6fb21ada5ad2d3754379 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 4 Feb 2024 20:44:44 +0100 Subject: [PATCH] logarithm 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 037ed94..fa73c03 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -16,4 +16,7 @@ float cubeRoot(float x); // Function to calculate the absolute value of a number float absolute(float x); +// Function to calculate the logarithm (base 10) of a number +float logarithm(float x); + #endif \ No newline at end of file