Skip to contents

Check if two text string are equal.

Usage

text_is_equal(text1, text2)

Arguments

text1

A string.

text2

A string.

Value

A logical

Note

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

bool TextIsEqual(const char * text1, const char * text2);

Examples

if (FALSE) {
text_is_equal("Hello", "Hello")
}