From 6083d2b9f3a508c87bf88ceeb29e603b00a9a7e8 Mon Sep 17 00:00:00 2001 From: Benjamin Schmid Ties <76067254+benjibst@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:20:13 +0100 Subject: fixed coding style in function TextToFloat (#3627) * function to convert string to float * fix code to match coding conventions --- src/raylib.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/raylib.h') diff --git a/src/raylib.h b/src/raylib.h index fd870c18..d5eafe7f 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1481,6 +1481,7 @@ RLAPI const char *TextToUpper(const char *text); // Get upp RLAPI const char *TextToLower(const char *text); // Get lower case version of provided string RLAPI const char *TextToPascal(const char *text); // Get Pascal case notation version of provided string RLAPI int TextToInteger(const char *text); // Get integer value from text (negative values not supported) +RLAPI float TextToFloat(const char *text); // Get float value from text (negative values not supported) //------------------------------------------------------------------------------------ // Basic 3d Shapes Drawing Functions (Module: models) -- cgit v1.2.3