Skip to contents

Insert text in a defined byte position.

Usage

text_insert(text, insert, position)

Arguments

text

A string.

insert

A string.

position

An integer.

Value

A string

Note

This function has been auto-generated from the following Raylib function definition:

char * TextInsert(const char * text, const char * insert, int position);

See also

Other insert functions: text_insert_alloc()

Examples

if (FALSE) {
text_insert("Hello", "text", 0L)
}