OPENSSL_strcasecmp

Case-insensitive comparison of two NUL-terminated C strings.

Synopsis

Declared in <openssl/crypto.h>

int
OPENSSL_strcasecmp(
    char const* s1,
    char const* s2);

Return Value

Less than, equal to, or greater than zero as with strcasecmp(3).

Parameters

NameDescription
s1First string.
s2Second string.