|
|
@ -6891,7 +6891,7 @@ return { |
|
|
|
{ |
|
|
|
name = "TextJoin", |
|
|
|
description = "Join text strings with delimiter", |
|
|
|
returnType = "const char *", |
|
|
|
returnType = "char *", |
|
|
|
params = { |
|
|
|
{type = "const char **", name = "textList"}, |
|
|
|
{type = "int", name = "count"}, |
|
|
@ -6901,7 +6901,7 @@ return { |
|
|
|
{ |
|
|
|
name = "TextSplit", |
|
|
|
description = "Split text into multiple strings", |
|
|
|
returnType = "const char **", |
|
|
|
returnType = "char **", |
|
|
|
params = { |
|
|
|
{type = "const char *", name = "text"}, |
|
|
|
{type = "char", name = "delimiter"}, |
|
|
@ -6930,7 +6930,7 @@ return { |
|
|
|
{ |
|
|
|
name = "TextToUpper", |
|
|
|
description = "Get upper case version of provided string", |
|
|
|
returnType = "const char *", |
|
|
|
returnType = "char *", |
|
|
|
params = { |
|
|
|
{type = "const char *", name = "text"} |
|
|
|
} |
|
|
@ -6938,7 +6938,7 @@ return { |
|
|
|
{ |
|
|
|
name = "TextToLower", |
|
|
|
description = "Get lower case version of provided string", |
|
|
|
returnType = "const char *", |
|
|
|
returnType = "char *", |
|
|
|
params = { |
|
|
|
{type = "const char *", name = "text"} |
|
|
|
} |
|
|
@ -6946,7 +6946,7 @@ return { |
|
|
|
{ |
|
|
|
name = "TextToPascal", |
|
|
|
description = "Get Pascal case notation version of provided string", |
|
|
|
returnType = "const char *", |
|
|
|
returnType = "char *", |
|
|
|
params = { |
|
|
|
{type = "const char *", name = "text"} |
|
|
|
} |
|
|
@ -6954,7 +6954,7 @@ return { |
|
|
|
{ |
|
|
|
name = "TextToSnake", |
|
|
|
description = "Get Snake case notation version of provided string", |
|
|
|
returnType = "const char *", |
|
|
|
returnType = "char *", |
|
|
|
params = { |
|
|
|
{type = "const char *", name = "text"} |
|
|
|
} |
|
|
@ -6962,7 +6962,7 @@ return { |
|
|
|
{ |
|
|
|
name = "TextToCamel", |
|
|
|
description = "Get Camel case notation version of provided string", |
|
|
|
returnType = "const char *", |
|
|
|
returnType = "char *", |
|
|
|
params = { |
|
|
|
{type = "const char *", name = "text"} |
|
|
|
} |
|
|
|