mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-05 19:08:13 +00:00
Merge branch 'master' of https://github.com/raysan5/raylib
This commit is contained in:
@@ -9777,7 +9777,7 @@
|
||||
},
|
||||
{
|
||||
"name": "TextFindIndex",
|
||||
"description": "Find first text occurrence within a string",
|
||||
"description": "Find first text occurrence within a string, -1 if not found",
|
||||
"returnType": "int",
|
||||
"params": [
|
||||
{
|
||||
|
@@ -6942,7 +6942,7 @@ return {
|
||||
},
|
||||
{
|
||||
name = "TextFindIndex",
|
||||
description = "Find first text occurrence within a string",
|
||||
description = "Find first text occurrence within a string, -1 if not found",
|
||||
returnType = "int",
|
||||
params = {
|
||||
{type = "const char *", name = "text"},
|
||||
|
@@ -3742,7 +3742,7 @@ Function 434: TextAppend() (3 input parameters)
|
||||
Function 435: TextFindIndex() (2 input parameters)
|
||||
Name: TextFindIndex
|
||||
Return type: int
|
||||
Description: Find first text occurrence within a string
|
||||
Description: Find first text occurrence within a string, -1 if not found
|
||||
Param[1]: text (type: const char *)
|
||||
Param[2]: find (type: const char *)
|
||||
Function 436: TextToUpper() (1 input parameters)
|
||||
|
@@ -2480,7 +2480,7 @@
|
||||
<Param type="const char *" name="append" desc="" />
|
||||
<Param type="int *" name="position" desc="" />
|
||||
</Function>
|
||||
<Function name="TextFindIndex" retType="int" paramCount="2" desc="Find first text occurrence within a string">
|
||||
<Function name="TextFindIndex" retType="int" paramCount="2" desc="Find first text occurrence within a string, -1 if not found">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
<Param type="const char *" name="find" desc="" />
|
||||
</Function>
|
||||
|
Reference in New Issue
Block a user