]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/strstr.c
Update gennews for GCC 14.
[thirdparty/gcc.git] / libiberty / strstr.c
CommitLineData
6599da04
JM
1/* Simple implementation of strstr for systems without it.
2 This function is in the public domain. */
3
4/*
5
aaa5f039 6@deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
6599da04 7
aaa5f039 8This function searches for the substring @var{sub} in the string
e922f978 9@var{string}, not including the terminating null characters. A pointer
7f8fa05d 10to the first occurrence of @var{sub} is returned, or @code{NULL} if the
aaa5f039
DD
11substring is absent. If @var{sub} points to a string with zero
12length, the function returns @var{string}.
6599da04 13
aaa5f039 14@end deftypefn
6599da04 15
6599da04
JM
16
17*/
18
f9a9ac80
KG
19#include <stddef.h>
20
1719fa40
JJ
21extern char *strchr (const char *, int);
22extern int strncmp (const void *, const void *, size_t);
f9a9ac80
KG
23extern size_t strlen (const char *);
24
6599da04 25char *
f9a9ac80 26strstr (const char *s1, const char *s2)
6599da04 27{
1719fa40 28 const char *p = s1;
f9a9ac80 29 const size_t len = strlen (s2);
1719fa40
JJ
30
31 if (!len)
32 return s1;
33
34 for (; (p = strchr (p, *s2)) != 0; p++)
6599da04 35 {
1719fa40
JJ
36 if (strncmp (p, s2, len) == 0)
37 return (char *)p;
6599da04
JM
38 }
39 return (0);
40}