Blame man3/strcasecmp.3

Packit 7cfc04
.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.\" References consulted:
Packit 7cfc04
.\"     Linux libc source code
Packit 7cfc04
.\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
Packit 7cfc04
.\"     386BSD man pages
Packit 7cfc04
.\" Modified Sat Jul 24 18:12:45 1993 by Rik Faith (faith@cs.unc.edu)
Packit 7cfc04
.TH STRCASECMP 3  2017-09-15 "" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
strcasecmp, strncasecmp \- compare two strings ignoring case
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B #include <strings.h>
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int strcasecmp(const char *" s1 ", const char *" s2 );
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int strncasecmp(const char *" s1 ", const char *" s2 ", size_t " n );
Packit 7cfc04
.fi
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
The
Packit 7cfc04
.BR strcasecmp ()
Packit 7cfc04
function performs a byte-by-byte comparison of the strings
Packit 7cfc04
.I s1
Packit 7cfc04
and
Packit 7cfc04
.IR s2 ,
Packit 7cfc04
ignoring the case of the characters.
Packit 7cfc04
It returns an integer
Packit 7cfc04
less than, equal to, or greater than zero if
Packit 7cfc04
.I s1
Packit 7cfc04
is found,
Packit 7cfc04
respectively, to be less than, to match, or be greater than
Packit 7cfc04
.IR s2 .
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.BR strncasecmp ()
Packit 7cfc04
function is similar, except that it compares
Packit 7cfc04
no more than
Packit 7cfc04
.I n
Packit 7cfc04
bytes of
Packit 7cfc04
.IR s1
Packit 7cfc04
and
Packit 7cfc04
.IR s2 .
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
The
Packit 7cfc04
.BR strcasecmp ()
Packit 7cfc04
and
Packit 7cfc04
.BR strncasecmp ()
Packit 7cfc04
functions return
Packit 7cfc04
an integer less than, equal to, or greater than zero if
Packit 7cfc04
.I s1
Packit 7cfc04
is, after ignoring case, found to be
Packit 7cfc04
less than, to match, or be greater than
Packit 7cfc04
.IR s2 ,
Packit 7cfc04
respectively.
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lbw27 lb lb
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR strcasecmp (),
Packit 7cfc04
.BR strncasecmp ()
Packit 7cfc04
T}	Thread safety	MT-Safe locale
Packit 7cfc04
.TE
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
4.4BSD, POSIX.1-2001, POSIX.1-2008.
Packit 7cfc04
.SH NOTES
Packit 7cfc04
The
Packit 7cfc04
.BR strcasecmp ()
Packit 7cfc04
and
Packit 7cfc04
.BR strncasecmp ()
Packit 7cfc04
functions first appeared in 4.4BSD, where they were declared in
Packit 7cfc04
.IR <string.h> .
Packit 7cfc04
Thus, for reasons of historical compatibility, the glibc
Packit 7cfc04
.I <string.h>
Packit 7cfc04
header file also declares these functions, if the
Packit 7cfc04
.B _DEFAULT_SOURCE
Packit 7cfc04
(or, in glibc 2.19 and earlier,
Packit 7cfc04
.BR _BSD_SOURCE )
Packit 7cfc04
feature test macro is defined.
Packit 7cfc04
.PP
Packit 7cfc04
The POSIX.1-2008 standard says of these functions:
Packit 7cfc04
.PP
Packit 7cfc04
.RS
Packit 7cfc04
When the
Packit 7cfc04
.B LC_CTYPE
Packit 7cfc04
category of the locale being used is from the POSIX locale,
Packit 7cfc04
these functions shall behave as if the strings had been converted
Packit 7cfc04
to lowercase and then a byte comparison performed.
Packit 7cfc04
Otherwise, the results are unspecified.
Packit 7cfc04
.RE
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR bcmp (3),
Packit 7cfc04
.BR memcmp (3),
Packit 7cfc04
.BR strcmp (3),
Packit 7cfc04
.BR strcoll (3),
Packit 7cfc04
.BR string (3),
Packit 7cfc04
.BR strncmp (3),
Packit 7cfc04
.BR wcscasecmp (3),
Packit 7cfc04
.BR wcsncasecmp (3)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.