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