[#OPENSSL_strncasecmp] = OPENSSL_strncasecmp :mrdocs: Case‐insensitive comparison of at most `n` characters of two C strings. == Synopsis Declared in `<openssl/crypto.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int OPENSSL_strncasecmp( char const* s1, char const* s2, size_t n); ---- == Return Value Negative, zero, or positive like strncasecmp(). == Parameters [cols="1,4"] |=== | Name| Description | *s1* | First string. | *s2* | Second string. | *n* | Maximum number of characters to compare. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#