Update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2025-08-26 08:17:48 +00:00
parent d2f6c4924c
commit 7103703313
4 changed files with 223 additions and 162 deletions

View File

@ -9605,6 +9605,32 @@
}
]
},
{
"name": "LoadTextLines",
"description": "Load text as separate lines ('\\n')",
"returnType": "char **",
"params": [
{
"type": "const char *",
"name": "text"
},
{
"type": "int *",
"name": "count"
}
]
},
{
"name": "UnloadTextLines",
"description": "Unload text lines",
"returnType": "void",
"params": [
{
"type": "char **",
"name": "text"
}
]
},
{
"name": "TextCopy",
"description": "Copy one string to another, returns bytes copied",