MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / string TextInsert

Method string TextInsert

include/Functions.hpp:389–395  ·  view source on GitHub ↗

* Insert text in a position */

Source from the content-addressed store, hash-verified

387 * Insert text in a position
388 */
389RLCPP_MAYBEUNUSED RLCPPAPI std::string TextInsert(const std::string& text, const std::string& insert, int position) {
390 const char* output = ::TextInsert(text.c_str(), insert.c_str(), position);
391 if (output != NULL) {
392 return std::string(output);
393 }
394 return "";
395}
396
397/**
398 * Split text into multiple strings

Callers

nothing calls this directly

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected