summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorBenjamin Schmid Ties <[email protected]>2023-12-13 21:20:13 +0100
committerGitHub <[email protected]>2023-12-13 21:20:13 +0100
commit6083d2b9f3a508c87bf88ceeb29e603b00a9a7e8 (patch)
treebede4ff3d18eff13b39ebab58e11b7054818f8bc /src/raylib.h
parenta57a0ecd96fd64c1202a2ba289e735fffcc54fd1 (diff)
downloadraylib-6083d2b9f3a508c87bf88ceeb29e603b00a9a7e8.tar.gz
raylib-6083d2b9f3a508c87bf88ceeb29e603b00a9a7e8.zip
fixed coding style in function TextToFloat (#3627)
* function to convert string to float * fix code to match coding conventions
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h1
1 files changed, 1 insertions, 0 deletions
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)