From af93054f927f4ac510be874038d9ed146e5ad619 Mon Sep 17 00:00:00 2001 From: Khaled Date: Sun, 4 Feb 2024 21:46:19 +0100 Subject: [PATCH] squareRootPlusOne header --- src/c/funktionen.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index fde7c2c..82dc677 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -65,5 +65,7 @@ float logarithmPlusOne(float x); // Function to calculate the natural logarithm (base e) of a number and add 1 float naturalLogarithmPlusOne(float x); +// Function to calculate the square root of a number and add 1 +float squareRootPlusOne(float x); #endif \ No newline at end of file