diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json index 853f591d..c7ebeaf3 100644 --- a/parser/output/raylib_api.json +++ b/parser/output/raylib_api.json @@ -9675,7 +9675,7 @@ { "name": "TextJoin", "description": "Join text strings with delimiter", - "returnType": "const char *", + "returnType": "char *", "params": [ { "type": "const char **", @@ -9694,7 +9694,7 @@ { "name": "TextSplit", "description": "Split text into multiple strings", - "returnType": "const char **", + "returnType": "char **", "params": [ { "type": "const char *", @@ -9747,7 +9747,7 @@ { "name": "TextToUpper", "description": "Get upper case version of provided string", - "returnType": "const char *", + "returnType": "char *", "params": [ { "type": "const char *", @@ -9758,7 +9758,7 @@ { "name": "TextToLower", "description": "Get lower case version of provided string", - "returnType": "const char *", + "returnType": "char *", "params": [ { "type": "const char *", @@ -9769,7 +9769,7 @@ { "name": "TextToPascal", "description": "Get Pascal case notation version of provided string", - "returnType": "const char *", + "returnType": "char *", "params": [ { "type": "const char *", @@ -9780,7 +9780,7 @@ { "name": "TextToSnake", "description": "Get Snake case notation version of provided string", - "returnType": "const char *", + "returnType": "char *", "params": [ { "type": "const char *", @@ -9791,7 +9791,7 @@ { "name": "TextToCamel", "description": "Get Camel case notation version of provided string", - "returnType": "const char *", + "returnType": "char *", "params": [ { "type": "const char *", diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua index 2983456f..d3130a7d 100644 --- a/parser/output/raylib_api.lua +++ b/parser/output/raylib_api.lua @@ -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"} } diff --git a/parser/output/raylib_api.txt b/parser/output/raylib_api.txt index 038b43e1..4d2ed2c9 100644 --- a/parser/output/raylib_api.txt +++ b/parser/output/raylib_api.txt @@ -3704,14 +3704,14 @@ Function 429: TextInsert() (3 input parameters) Param[3]: position (type: int) Function 430: TextJoin() (3 input parameters) Name: TextJoin - Return type: const char * + Return type: char * Description: Join text strings with delimiter Param[1]: textList (type: const char **) Param[2]: count (type: int) Param[3]: delimiter (type: const char *) Function 431: TextSplit() (3 input parameters) Name: TextSplit - Return type: const char ** + Return type: char ** Description: Split text into multiple strings Param[1]: text (type: const char *) Param[2]: delimiter (type: char) @@ -3731,27 +3731,27 @@ Function 433: TextFindIndex() (2 input parameters) Param[2]: find (type: const char *) Function 434: TextToUpper() (1 input parameters) Name: TextToUpper - Return type: const char * + Return type: char * Description: Get upper case version of provided string Param[1]: text (type: const char *) Function 435: TextToLower() (1 input parameters) Name: TextToLower - Return type: const char * + Return type: char * Description: Get lower case version of provided string Param[1]: text (type: const char *) Function 436: TextToPascal() (1 input parameters) Name: TextToPascal - Return type: const char * + Return type: char * Description: Get Pascal case notation version of provided string Param[1]: text (type: const char *) Function 437: TextToSnake() (1 input parameters) Name: TextToSnake - Return type: const char * + Return type: char * Description: Get Snake case notation version of provided string Param[1]: text (type: const char *) Function 438: TextToCamel() (1 input parameters) Name: TextToCamel - Return type: const char * + Return type: char * Description: Get Camel case notation version of provided string Param[1]: text (type: const char *) Function 439: TextToInteger() (1 input parameters) diff --git a/parser/output/raylib_api.xml b/parser/output/raylib_api.xml index 734f9646..c2c64597 100644 --- a/parser/output/raylib_api.xml +++ b/parser/output/raylib_api.xml @@ -2453,12 +2453,12 @@ - + - + @@ -2472,19 +2472,19 @@ - + - + - + - + - +