* Find first text occurrence within a string */
| 407 | * Find first text occurrence within a string |
| 408 | */ |
| 409 | RLCPP_MAYBEUNUSED RLCPPAPI inline int TextFindIndex(const std::string& text, const std::string& find) { |
| 410 | return ::TextFindIndex(text.c_str(), find.c_str()); |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * Get upper case version of provided string |