diff --git a/man3/bcmp.3 b/man3/bcmp.3 index 159ffaddc..c6c01e204 100644 --- a/man3/bcmp.3 +++ b/man3/bcmp.3 @@ -78,6 +78,7 @@ in new programs. POSIX.1-2008 removes the specification of .BR bcmp (). .SH SEE ALSO +.BR bstring (3), .BR memcmp (3), .BR strcasecmp (3), .BR strcmp (3), diff --git a/man3/bcopy.3 b/man3/bcopy.3 index 2c2ad488f..2a495ff32 100644 --- a/man3/bcopy.3 +++ b/man3/bcopy.3 @@ -78,6 +78,7 @@ and POSIX.1-2008 removes the specification of .BR bcopy (). .SH SEE ALSO +.BR bstring (3), .BR memccpy (3), .BR memcpy (3), .BR memmove (3), diff --git a/man3/bzero.3 b/man3/bzero.3 index e6568c19b..d550feabf 100644 --- a/man3/bzero.3 +++ b/man3/bzero.3 @@ -67,5 +67,6 @@ in new programs. POSIX.1-2008 removes the specification of .BR bzero (). .SH SEE ALSO +.BR bstring (3), .BR memset (3), .BR swab (3) diff --git a/man3/memccpy.3 b/man3/memccpy.3 index 0cce047a0..77519c561 100644 --- a/man3/memccpy.3 +++ b/man3/memccpy.3 @@ -83,6 +83,7 @@ T} Thread safety MT-Safe POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD. .SH SEE ALSO .BR bcopy (3), +.BR bstring (3), .BR memcpy (3), .BR memmove (3), .BR strcpy (3), diff --git a/man3/memchr.3 b/man3/memchr.3 index 58a911a47..cad01723f 100644 --- a/man3/memchr.3 +++ b/man3/memchr.3 @@ -147,6 +147,7 @@ The .BR rawmemchr () function is a GNU extension, available since glibc 2.1. .SH SEE ALSO +.BR bstring (3), .BR ffs (3), .BR index (3), .BR memmem (3), diff --git a/man3/memcmp.3 b/man3/memcmp.3 index 57e407c32..a0dcbc0ed 100644 --- a/man3/memcmp.3 +++ b/man3/memcmp.3 @@ -88,6 +88,7 @@ but no such function is specified in POSIX. On Linux, it may be necessary to implement such a function oneself. .SH SEE ALSO .BR bcmp (3), +.BR bstring (3), .BR strcasecmp (3), .BR strcmp (3), .BR strcoll (3), diff --git a/man3/memcpy.3 b/man3/memcpy.3 index 148280bab..3ede0d023 100644 --- a/man3/memcpy.3 +++ b/man3/memcpy.3 @@ -108,6 +108,7 @@ implementation that was aliased to .BR memmove (3)). .SH SEE ALSO .BR bcopy (3), +.BR bstring (3), .BR memccpy (3), .BR memmove (3), .BR mempcpy (3), diff --git a/man3/memfrob.3 b/man3/memfrob.3 index 0805bdace..3646b8a23 100644 --- a/man3/memfrob.3 +++ b/man3/memfrob.3 @@ -73,4 +73,5 @@ The function is unique to the GNU C Library. .SH SEE ALSO +.BR bstring (3), .BR strfry (3) diff --git a/man3/memmem.3 b/man3/memmem.3 index b8e5ddfd8..eb15017f2 100644 --- a/man3/memmem.3 +++ b/man3/memmem.3 @@ -97,4 +97,5 @@ returns a pointer to the last byte of .IR haystack . This is fixed in glibc 2.1. .SH SEE ALSO +.BR bstring (3), .BR strstr (3) diff --git a/man3/memmove.3 b/man3/memmove.3 index d83b18074..a5ca0035f 100644 --- a/man3/memmove.3 +++ b/man3/memmove.3 @@ -75,6 +75,7 @@ T} Thread safety MT-Safe POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD. .SH SEE ALSO .BR bcopy (3), +.BR bstring (3), .BR memccpy (3), .BR memcpy (3), .BR strcpy (3), diff --git a/man3/memset.3 b/man3/memset.3 index 707e59a58..85e5408d0 100644 --- a/man3/memset.3 +++ b/man3/memset.3 @@ -66,6 +66,7 @@ T} Thread safety MT-Safe .SH CONFORMING TO POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD. .SH SEE ALSO +.BR bstring (3), .BR bzero (3), .BR swab (3), .BR wmemset (3)