OSDN Git Service

49e946c4ab9a2976c1afa2790f791c4ae70ee9a3
[linuxjm/LDP_man-pages.git] / original / man3 / memmem.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 .\"     386BSD man pages
28 .\" Modified Sat Jul 24 18:50:48 1993 by Rik Faith (faith@cs.unc.edu)
29 .\" Interchanged 'needle' and 'haystack'; added history, aeb, 980113.
30 .TH MEMMEM 3  2014-03-17 "GNU" "Linux Programmer's Manual"
31 .SH NAME
32 memmem \- locate a substring
33 .SH SYNOPSIS
34 .nf
35 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
36 .B #include <string.h>
37 .sp
38 .BI "void *memmem(const void *" haystack ", size_t " haystacklen ,
39 .BI "             const void *" needle ", size_t " needlelen  );
40 .fi
41 .SH DESCRIPTION
42 The
43 .BR memmem ()
44 function finds the start of the first occurrence
45 of the substring
46 .IR needle
47 of length
48 .I needlelen
49 in the memory
50 area
51 .I haystack
52 of length
53 .IR haystacklen .
54 .SH RETURN VALUE
55 The
56 .BR memmem ()
57 function returns a pointer to the beginning of the
58 substring, or NULL if the substring is not found.
59 .SH ATTRIBUTES
60 .SS Multithreading (see pthreads(7))
61 The
62 .BR memmem ()
63 function is thread-safe.
64 .SH CONFORMING TO
65 This function is a GNU extension.
66 .SH BUGS
67 This function was broken in Linux libraries up to and including libc 5.0.9;
68 there the
69 .IR needle
70 and
71 .I haystack
72 arguments were interchanged,
73 and a pointer to the end of the first occurrence of
74 .I needle
75 was returned.
76
77 Both old and new libc's have the bug that if
78 .I needle
79 is empty,
80 .I haystack\-1
81 (instead of
82 .IR haystack )
83 is returned.
84 And glibc 2.0 makes it worse, returning a pointer to the
85 last byte of
86 .IR haystack .
87 This is fixed in glibc 2.1.
88 .SH SEE ALSO
89 .BR strstr (3)
90 .SH COLOPHON
91 This page is part of release 3.67 of the Linux
92 .I man-pages
93 project.
94 A description of the project,
95 information about reporting bugs,
96 and the latest version of this page,
97 can be found at
98 \%http://www.kernel.org/doc/man\-pages/.