mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 11:28:17 +00:00
Merge branch 'master' of https://github.com/raysan5/raylib
This commit is contained in:
@@ -9739,7 +9739,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TextSplit",
|
"name": "TextSplit",
|
||||||
"description": "Split text into multiple strings",
|
"description": "Split text into multiple strings, using MAX_TEXTSPLIT_COUNT static strings",
|
||||||
"returnType": "char **",
|
"returnType": "char **",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
|
@@ -6922,7 +6922,7 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "TextSplit",
|
name = "TextSplit",
|
||||||
description = "Split text into multiple strings",
|
description = "Split text into multiple strings, using MAX_TEXTSPLIT_COUNT static strings",
|
||||||
returnType = "char **",
|
returnType = "char **",
|
||||||
params = {
|
params = {
|
||||||
{type = "const char *", name = "text"},
|
{type = "const char *", name = "text"},
|
||||||
|
@@ -3728,7 +3728,7 @@ Function 432: TextJoin() (3 input parameters)
|
|||||||
Function 433: TextSplit() (3 input parameters)
|
Function 433: TextSplit() (3 input parameters)
|
||||||
Name: TextSplit
|
Name: TextSplit
|
||||||
Return type: char **
|
Return type: char **
|
||||||
Description: Split text into multiple strings
|
Description: Split text into multiple strings, using MAX_TEXTSPLIT_COUNT static strings
|
||||||
Param[1]: text (type: const char *)
|
Param[1]: text (type: const char *)
|
||||||
Param[2]: delimiter (type: char)
|
Param[2]: delimiter (type: char)
|
||||||
Param[3]: count (type: int *)
|
Param[3]: count (type: int *)
|
||||||
|
@@ -2470,7 +2470,7 @@
|
|||||||
<Param type="int" name="count" desc="" />
|
<Param type="int" name="count" desc="" />
|
||||||
<Param type="const char *" name="delimiter" desc="" />
|
<Param type="const char *" name="delimiter" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="TextSplit" retType="char **" paramCount="3" desc="Split text into multiple strings">
|
<Function name="TextSplit" retType="char **" paramCount="3" desc="Split text into multiple strings, using MAX_TEXTSPLIT_COUNT static strings">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
<Param type="char" name="delimiter" desc="" />
|
<Param type="char" name="delimiter" desc="" />
|
||||||
<Param type="int *" name="count" desc="" />
|
<Param type="int *" name="count" desc="" />
|
||||||
|
Reference in New Issue
Block a user