1STRSTR(3)                  Linux Programmer's Manual                 STRSTR(3)
2
3
4

NAME

6       strstr, strcasestr - locate a substring
7

SYNOPSIS

9       #include <string.h>
10
11       char *strstr(const char *haystack, const char *needle);
12
13       #define _GNU_SOURCE         /* See feature_test_macros(7) */
14       #include <string.h>
15
16       char *strcasestr(const char *haystack, const char *needle);
17

DESCRIPTION

19       The  strstr() function finds the first occurrence of the substring nee‐
20       dle in the string haystack.  The terminating null bytes ('\0') are  not
21       compared.
22
23       The  strcasestr()  function  is  like strstr(), but ignores the case of
24       both arguments.
25

RETURN VALUE

27       These functions return a pointer to the beginning of the  located  sub‐
28       string, or NULL if the substring is not found.
29

ATTRIBUTES

31       For  an  explanation  of  the  terms  used  in  this  section,  see at‐
32       tributes(7).
33
34       ┌─────────────────────────────────────┬───────────────┬────────────────┐
35Interface                            Attribute     Value          
36       ├─────────────────────────────────────┼───────────────┼────────────────┤
37strstr()                             │ Thread safety │ MT-Safe        │
38       ├─────────────────────────────────────┼───────────────┼────────────────┤
39strcasestr()                         │ Thread safety │ MT-Safe locale │
40       └─────────────────────────────────────┴───────────────┴────────────────┘
41

CONFORMING TO

43       strstr(): POSIX.1-2001, POSIX.1-2008, C89, C99.
44
45       The strcasestr() function is a nonstandard extension.
46

SEE ALSO

48       index(3), memchr(3), memmem(3),  rindex(3),  strcasecmp(3),  strchr(3),
49       string(3), strpbrk(3), strsep(3), strspn(3), strtok(3), wcsstr(3)
50

COLOPHON

52       This  page  is  part of release 5.12 of the Linux man-pages project.  A
53       description of the project, information about reporting bugs,  and  the
54       latest     version     of     this    page,    can    be    found    at
55       https://www.kernel.org/doc/man-pages/.
56
57
58
59GNU                               2021-03-22                         STRSTR(3)
Impressum