aboutsummaryrefslogtreecommitdiffstats
path: root/man3/strpbrk.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/strpbrk.3')
-rw-r--r--man3/strpbrk.38
1 files changed, 6 insertions, 2 deletions
diff --git a/man3/strpbrk.3 b/man3/strpbrk.3
index 6152c5f7fc..2e161fe7a2 100644
--- a/man3/strpbrk.3
+++ b/man3/strpbrk.3
@@ -35,10 +35,14 @@ strpbrk \- search a string for any of a set of characters
.BI "char *strpbrk(const char *" s ", const char *" accept );
.fi
.SH DESCRIPTION
-The \fBstrpbrk\fP() function locates the first occurrence in the
+The
+.BR strpbrk ()
+function locates the first occurrence in the
string \fIs\fP of any of the characters in the string \fIaccept\fP.
.SH "RETURN VALUE"
-The \fBstrpbrk\fP() function returns a pointer to the character in
+The
+.BR strpbrk ()
+function returns a pointer to the character in
\fIs\fP that matches one of the characters in \fIaccept\fP, or NULL
if no such character is found.
.SH "CONFORMING TO"