Loading...
string/memchr.3 Libc-583 Libc-262.3.2
--- Libc/Libc-583/string/memchr.3
+++ Libc/Libc-262.3.2/string/memchr.3
@@ -47,11 +47,7 @@
 .Sh SYNOPSIS
 .In string.h
 .Ft void *
-.Fo memchr
-.Fa "const void *s"
-.Fa "int c"
-.Fa "size_t n"
-.Fc
+.Fn memchr "const void *b" "int c" "size_t len"
 .Sh DESCRIPTION
 The
 .Fn memchr
@@ -60,14 +56,14 @@
 .Fa c
 (converted to an unsigned char)
 in string
-.Fa s .
+.Fa b .
 .Sh RETURN VALUES
 The
 .Fn memchr
 function
 returns a pointer to the byte located,
 or NULL if no such byte exists within
-.Fa n
+.Fa len
 bytes.
 .Sh SEE ALSO
 .Xr strchr 3 ,