OSDN Git Service

1509ce051cfc55d7f4e133fe238f20d7b661b9de
[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  2012-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 SEE ALSO
79 .BR bcmp (3),
80 .BR memcmp (3),
81 .BR strcmp (3),
82 .BR strcoll (3),
83 .BR string (3),
84 .BR strncmp (3),
85 .BR wcscasecmp (3),
86 .BR wcsncasecmp (3)
87 .SH COLOPHON
88 This page is part of release 3.64 of the Linux
89 .I man-pages
90 project.
91 A description of the project,
92 and information about reporting bugs,
93 can be found at
94 \%http://www.kernel.org/doc/man\-pages/.