This commit is contained in:
Ray
2025-08-02 18:01:32 +02:00
4 changed files with 4 additions and 4 deletions

View File

@@ -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": [
{ {

View File

@@ -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"},

View File

@@ -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)

View File

@@ -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>