mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Update raylib_api.* by CI
This commit is contained in:
@ -2453,12 +2453,12 @@
|
||||
<Param type="const char *" name="insert" desc="" />
|
||||
<Param type="int" name="position" desc="" />
|
||||
</Function>
|
||||
<Function name="TextJoin" retType="const char *" paramCount="3" desc="Join text strings with delimiter">
|
||||
<Function name="TextJoin" retType="char *" paramCount="3" desc="Join text strings with delimiter">
|
||||
<Param type="const char **" name="textList" desc="" />
|
||||
<Param type="int" name="count" desc="" />
|
||||
<Param type="const char *" name="delimiter" desc="" />
|
||||
</Function>
|
||||
<Function name="TextSplit" retType="const char **" paramCount="3" desc="Split text into multiple strings">
|
||||
<Function name="TextSplit" retType="char **" paramCount="3" desc="Split text into multiple strings">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
<Param type="char" name="delimiter" desc="" />
|
||||
<Param type="int *" name="count" desc="" />
|
||||
@ -2472,19 +2472,19 @@
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
<Param type="const char *" name="find" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToUpper" retType="const char *" paramCount="1" desc="Get upper case version of provided string">
|
||||
<Function name="TextToUpper" retType="char *" paramCount="1" desc="Get upper case version of provided string">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToLower" retType="const char *" paramCount="1" desc="Get lower case version of provided string">
|
||||
<Function name="TextToLower" retType="char *" paramCount="1" desc="Get lower case version of provided string">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToPascal" retType="const char *" paramCount="1" desc="Get Pascal case notation version of provided string">
|
||||
<Function name="TextToPascal" retType="char *" paramCount="1" desc="Get Pascal case notation version of provided string">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToSnake" retType="const char *" paramCount="1" desc="Get Snake case notation version of provided string">
|
||||
<Function name="TextToSnake" retType="char *" paramCount="1" desc="Get Snake case notation version of provided string">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToCamel" retType="const char *" paramCount="1" desc="Get Camel case notation version of provided string">
|
||||
<Function name="TextToCamel" retType="char *" paramCount="1" desc="Get Camel case notation version of provided string">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToInteger" retType="int" paramCount="1" desc="Get integer value from text">
|
||||
|
||||
Reference in New Issue
Block a user