'\" t .\" Copyright 1993, David Metcalfe .\" Copyright, the authors of the Linux man-pages project .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .TH strcasecmp 3 2026-08-10 "Linux man-pages 6.19" .SH NAME strcasecmp \- strings case-insensitive compare .SH LIBRARY Standard C library .RI ( libc ,\~ \-lc ) .SH SYNOPSIS .nf .B #include .P .BI "int strcasecmp(const char *" s1 ", const char *" s2 ); .fi .SH DESCRIPTION The .BR strcasecmp () function performs a byte-by-byte comparison of the strings .I s1 and .IR s2 , ignoring the case of the characters. It returns an integer less than, equal to, or greater than zero if .I s1 is found, respectively, to be less than, to match, or be greater than .IR s2 . .SH RETURN VALUE The .BR strcasecmp () function returns an integer less than, equal to, or greater than zero if .I s1 is, after ignoring case, found to be less than, to match, or be greater than .IR s2 , respectively. .SH ATTRIBUTES For an explanation of the terms used in this section, see .BR attributes (7). .TS allbox; lbx lb lb l l l. Interface Attribute Value T{ .na .nh .BR strcasecmp () T} Thread safety MT-Safe locale .TE .SH STANDARDS POSIX.1-2008. .SH HISTORY 4.4BSD, POSIX.1-2001. .P .BR strcasecmp () first appeared in 4.4BSD, where it was declared in .IR . Thus, for reasons of historical compatibility, the glibc .I header file also declares this function, if the .B _DEFAULT_SOURCE (or, in glibc 2.19 and earlier, .BR _BSD_SOURCE ) feature test macro is defined. .P The POSIX.1-2008 standard says of this function: .P .RS When the .B LC_CTYPE category of the locale being used is from the POSIX locale, these functions shall behave as if the strings had been converted to lowercase and then a byte comparison performed. Otherwise, the results are unspecified. .RE .SH SEE ALSO .BR strcmp (3), .BR string (3), .BR wcscasecmp (3)