]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/strchr.3
Automated unformatting of parentheses using unformat_parens.sh
[thirdparty/man-pages.git] / man3 / strchr.3
index c5c9baf7c4e694a96a871509fd5bfe909dc3831f..0c25428e64b5269d0b9aec64df6b04752a344922 100644 (file)
@@ -37,16 +37,16 @@ strchr, strrchr \- locate character in string
 .BI "char *strrchr(const char *" s ", int " c );
 .fi
 .SH DESCRIPTION
-The \fBstrchr()\fP function returns a pointer to the first occurrence
+The \fBstrchr\fP() function returns a pointer to the first occurrence
 of the character \fIc\fP in the string \fIs\fP.
 .PP
-The \fBstrrchr()\fP function returns a pointer to the last occurrence
+The \fBstrrchr\fP() function returns a pointer to the last occurrence
 of the character \fIc\fP in the string \fIs\fP.
 .PP
 Here "character" means "byte"; these functions do not work with
 wide or multi-byte characters.
 .SH "RETURN VALUE"
-The \fBstrchr()\fP and \fBstrrchr()\fP functions return a pointer to
+The \fBstrchr\fP() and \fBstrrchr\fP() functions return a pointer to
 the matched character or NULL if the character is not found.
 .SH "CONFORMING TO"
 SVID 3, POSIX, 4.3BSD, ISO 9899