SC_String_Equals()
Compares two strings (case sensitive).
Synopsis:
#include <scoreloop/sc_string.h>
SC_Bool_t SC_String_Equals(SC_String_h self, SC_String_h other)
Arguments:
- self
-
An opaque handle for the current string instance.
- other
-
The handle for the other string instance.
Library:
libscoreloopcoreDescription:
This method does a bytewise comparison the UTF8 data of the two strings. Note that strings on the Scoreloop servers might be normalized and change the byte sequence. For a string comparison of composed unicode vs. decomposed unicode, please resort to a higher level library like ICU or Qt.
Returns:
SC_Bool_t returns SC_TRUE if they are equal and SC_FALSE if not equal.