StrEqual
Returns whether two strings are equal.
stock bool StrEqual(const char[] str1, const char[] str2, bool caseSensitive = true)
Parameters
const char[] str1
First string (left).
const char[] str2
Second string (right).
bool caseSensitive
If true (default), comparison is case sensitive.
If false, comparison is case insensitive.
Return Value
bool True if equal, false otherwise.