OSDN Git Service

34042be4f1411df88f2b6cd8fab9ea9ad37809ee
[linuxjm/LDP_man-pages.git] / original / man3 / strcasecmp.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified Sat Jul 24 18:12:45 1993 by Rik Faith (faith@cs.unc.edu)
30 .TH STRCASECMP 3  2014-05-10 "" "Linux Programmer's Manual"
31 .SH NAME
32 strcasecmp, strncasecmp \- compare two strings ignoring case
33 .SH SYNOPSIS
34 .nf
35 .B #include <strings.h>
36 .sp
37 .BI "int strcasecmp(const char *" s1 ", const char *" s2 );
38 .sp
39 .BI "int strncasecmp(const char *" s1 ", const char *" s2 ", size_t " n );
40 .fi
41 .SH DESCRIPTION
42 The
43 .BR strcasecmp ()
44 function compares the two strings
45 .I s1
46 and
47 .IR s2 ,
48 ignoring the case of the characters.
49 It returns an integer
50 less than, equal to, or greater than zero if
51 .I s1
52 is found,
53 respectively, to be less than, to match, or be greater than
54 .IR s2 .
55 .PP
56 The
57 .BR strncasecmp ()
58 function is similar, except it compares
59 the only first
60 .I n
61 bytes of
62 .IR s1 .
63 .SH RETURN VALUE
64 The
65 .BR strcasecmp ()
66 and
67 .BR strncasecmp ()
68 functions return
69 an integer less than, equal to, or greater than zero if
70 .I s1
71 (or the first
72 .I n
73 bytes thereof) is found, respectively, to be
74 less than, to match, or be greater than
75 .IR s2 .
76 .SH CONFORMING TO
77 4.4BSD, POSIX.1-2001.
78 .SH NOTES
79 The
80 .BR strcasecmp ()
81 and
82 .BR strncasecmp ()
83 functions first appeared in 4.4BSD, where they were declared in
84 .IR <string.h> .
85 Thus, for reasons of historical compatibility, the glibc
86 .I <string.h>
87 header file also declares these functions, if the
88 .B _DEFAULT_SOURCE
89 (or, in glibc 2.19 and earlier,
90 .BR _BSD_SOURCE )
91 feature test macro is defined.
92 .SH SEE ALSO
93 .BR bcmp (3),
94 .BR memcmp (3),
95 .BR strcmp (3),
96 .BR strcoll (3),
97 .BR string (3),
98 .BR strncmp (3),
99 .BR wcscasecmp (3),
100 .BR wcsncasecmp (3)
101 .SH COLOPHON
102 This page is part of release 3.67 of the Linux
103 .I man-pages
104 project.
105 A description of the project,
106 information about reporting bugs,
107 and the latest version of this page,
108 can be found at
109 \%http://www.kernel.org/doc/man\-pages/.