Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2025-01-10 12:06:46 +00:00
parent bf8962dbc7
commit 433cc23ea4
4 changed files with 28 additions and 28 deletions

View file

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