From: Alejandro Colomar Date: Thu, 18 Sep 2025 16:08:15 +0000 (+0200) Subject: man/man3/memeq.3: Add page X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6747d5be7a5a6bf46440c37f57c660c3f85873dc;p=thirdparty%2Fman-pages.git man/man3/memeq.3: Add page Link: Link: Signed-off-by: Alejandro Colomar --- diff --git a/man/man3/memeq.3 b/man/man3/memeq.3 new file mode 100644 index 000000000..518a9f8ca --- /dev/null +++ b/man/man3/memeq.3 @@ -0,0 +1,56 @@ +'\" t +.\" Copyright, the authors of the Linux man-pages project +.\" +.\" SPDX-License-Identifier: Linux-man-pages-copyleft +.\" +.TH memeq 3 (date) "Linux man-pages (unreleased)" +.SH NAME +memeq \- memory equal +.SH LIBRARY +gnulib \- The GNU Portability Library +.SH SYNOPSIS +.nf +.B #include +.P +.BI "bool memeq(const void *" m1 ", const void *" m2 ", size_t " n ); +.fi +.SH DESCRIPTION +.BR memeq () +determines whether the first +.I n +bytes of the memory areas pointed to by +.I m1 +and +.I m2 +are equal. +.SH RETURN VALUE +.BR memeq () +returns true if and only if the first +.I n +bytes of the memory areas pointed to by +.I m1 +and +.I m2 +are equal. +.SH ATTRIBUTES +For an explanation of the terms used in this section, see +.BR attributes (7). +.TS +allbox; +lbx lb lb +l l l. +Interface Attribute Value +T{ +.na +.nh +.BR memeq () +T} Thread safety MT-Safe +.TE +.SH STANDARDS +GNU. +.SH HISTORY +gnulib 202601. +.SH SEE ALSO +.BR streq (3), +.BR memcmp (3), +.BR string (3)