summaryrefslogtreecommitdiffstats
path: root/upstream/debian-unstable/man3/strchr.3
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 10:51:52 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 10:51:52 +0000
commit4ad94864781f48b1a4b77f9cfb934622bf756ba1 (patch)
tree3900955c1886e6d2570fea7125ee1f01bafe876d /upstream/debian-unstable/man3/strchr.3
parentAdding upstream version 4.22.0. (diff)
downloadmanpages-l10n-4ad94864781f48b1a4b77f9cfb934622bf756ba1.tar.xz
manpages-l10n-4ad94864781f48b1a4b77f9cfb934622bf756ba1.zip
Adding upstream version 4.23.0.upstream/4.23.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'upstream/debian-unstable/man3/strchr.3')
-rw-r--r--upstream/debian-unstable/man3/strchr.321
1 files changed, 11 insertions, 10 deletions
diff --git a/upstream/debian-unstable/man3/strchr.3 b/upstream/debian-unstable/man3/strchr.3
index 91bd8aad..446a698b 100644
--- a/upstream/debian-unstable/man3/strchr.3
+++ b/upstream/debian-unstable/man3/strchr.3
@@ -11,7 +11,7 @@
.\" 2006-05-19, Justin Pryzby <pryzbyj@justinpryzby.com>
.\" Document strchrnul(3).
.\"
-.TH strchr 3 2023-07-20 "Linux man-pages 6.05.01"
+.TH strchr 3 2024-05-02 "Linux man-pages 6.8"
.SH NAME
strchr, strrchr, strchrnul \- locate character in string
.SH LIBRARY
@@ -20,13 +20,13 @@ Standard C library
.SH SYNOPSIS
.nf
.B #include <string.h>
-.PP
+.P
.BI "char *strchr(const char *" s ", int " c );
.BI "char *strrchr(const char *" s ", int " c );
-.PP
+.P
.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
.B #include <string.h>
-.PP
+.P
.BI "char *strchrnul(const char *" s ", int " c );
.fi
.SH DESCRIPTION
@@ -37,7 +37,7 @@ of the character
.I c
in the string
.IR s .
-.PP
+.P
The
.BR strrchr ()
function returns a pointer to the last occurrence
@@ -45,7 +45,7 @@ of the character
.I c
in the string
.IR s .
-.PP
+.P
The
.BR strchrnul ()
function is like
@@ -58,7 +58,7 @@ then it returns a pointer to the null byte
at the end of
.IR s ,
rather than NULL.
-.PP
+.P
Here "character" means "byte"; these functions do not work with
wide or multibyte characters.
.SH RETURN VALUE
@@ -73,7 +73,7 @@ so that if
.I c
is specified as \[aq]\e0\[aq],
these functions return a pointer to the terminator.
-.PP
+.P
The
.BR strchrnul ()
function returns a pointer to the matched character,
@@ -98,7 +98,6 @@ T{
.BR strchrnul ()
T} Thread safety MT-Safe
.TE
-.sp 1
.SH STANDARDS
.TP
.BR strchr ()
@@ -116,7 +115,9 @@ GNU.
POSIX.1-2001, C89, SVr4, 4.3BSD.
.TP
.BR strchrnul ()
-glibc 2.1.1.
+glibc 2.1.1,
+FreeBSD 10,
+NetBSD 8.
.SH SEE ALSO
.BR memchr (3),
.BR string (3),