1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
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.
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.
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
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" References consulted:
26 .\" Linux libc source code
27 .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
29 .\" Modified Mon Apr 12 12:51:24 1993, David Metcalfe
30 .\" 2006-05-19, Justin Pryzby <pryzbyj@justinpryzby.com>
31 .\" Document strchrnul(3).
33 .TH STRCHR 3 2019-03-06 "GNU" "Linux Programmer's Manual"
35 strchr, strrchr, strchrnul \- locate character in string
38 .B #include <string.h>
40 .BI "char *strchr(const char *" s ", int " c );
42 .BI "char *strrchr(const char *" s ", int " c );
44 .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
45 .B #include <string.h>
47 .BI "char *strchrnul(const char *" s ", int " c );
52 function returns a pointer to the first occurrence
60 function returns a pointer to the last occurrence
74 then it returns a pointer to the null byte
79 Here "character" means "byte"; these functions do not work with
80 wide or multibyte characters.
86 functions return a pointer to
87 the matched character or NULL if the character is not found.
88 The terminating null byte is considered part of the string,
91 is specified as \(aq\e0\(aq,
92 these functions return a pointer to the terminator.
96 function returns a pointer to the matched character,
97 or a pointer to the null byte at the end of
101 if the character is not found.
104 first appeared in glibc in version 2.1.1.
106 For an explanation of the terms used in this section, see
112 Interface Attribute Value
117 T} Thread safety MT-Safe
122 POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD.