diff options
| author | IoIxD <[email protected]> | 2024-06-03 11:13:28 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-03 20:13:28 +0200 |
| commit | 39f12859dcdf92822c8fefece1135bf6e76a1573 (patch) | |
| tree | c3cfe9a317002ff65dc83c46d0063dbb23c623f2 /parser/output/raylib_api.json | |
| parent | 06f8c4f73318488e5a4bf1f7bd82fe991a66827e (diff) | |
| download | raylib-39f12859dcdf92822c8fefece1135bf6e76a1573.tar.gz raylib-39f12859dcdf92822c8fefece1135bf6e76a1573.zip | |
rtext: added functions for camel case and snake case (reopened due to formatting errors) (#4033)
* rtext: added functions for camel case and snake case
* Update raylib_api.* by CI
* rtext: removed always false comparison
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'parser/output/raylib_api.json')
| -rw-r--r-- | parser/output/raylib_api.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json index 4bfce70d..961578e5 100644 --- a/parser/output/raylib_api.json +++ b/parser/output/raylib_api.json @@ -9480,6 +9480,28 @@ ] }, { + "name": "TextToSnake", + "description": "Get Snake case notation version of provided string", + "returnType": "const char *", + "params": [ + { + "type": "const char *", + "name": "text" + } + ] + }, + { + "name": "TextToCamel", + "description": "Get Camel case notation version of provided string", + "returnType": "const char *", + "params": [ + { + "type": "const char *", + "name": "text" + } + ] + }, + { "name": "TextToInteger", "description": "Get integer value from text (negative values not supported)", "returnType": "int", |
