Insert text in a defined byte position.
Usage
text_insert(text, insert, position)
Arguments
- text
A string.
- insert
A string.
- position
An integer.
Note
This function has been auto-generated from the following Raylib function definition:
char * TextInsert(const char * text, const char * insert, int position);
Examples
if (FALSE) {
text_insert("Hello", "text", 0L)
}