Skip to content

MTY_Strcasecmp

chrisd1100 edited this page Aug 25, 2022 · 1 revision

Case insensitive string comparison.

For more information, see strcasecmp from the C standard library.

int32_t MTY_Strcasecmp(
    const char * s0,
    const char * s1
);

Parameters

s0 (const char *)

First string to compare.

s1 (const char *)

Second string to compare.

Return value

int32_t

If the strings match, returns 0, otherwise a non-zero value.

Platform support

Windows   macOS   Android   Linux   Web  

See also

Module: Memory

Clone this wiki locally