diff options
Diffstat (limited to 'parser/output/raylib_api.lua')
| -rw-r--r-- | parser/output/raylib_api.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua index 4a6998bb..eb88daab 100644 --- a/parser/output/raylib_api.lua +++ b/parser/output/raylib_api.lua @@ -6777,6 +6777,22 @@ return { } }, { + 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", |
