From 22462bf2e712655a00cc11231defc8623f81b35f Mon Sep 17 00:00:00 2001 From: Eric-Paul Ickhorn Date: Fri, 1 Dec 2023 16:37:41 +0100 Subject: [PATCH] Added the return type to the rr_memequ doxygen comment --- code/exports/librr/memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/exports/librr/memory.h b/code/exports/librr/memory.h index 5fcbbeb..a105bb8 100644 --- a/code/exports/librr/memory.h +++ b/code/exports/librr/memory.h @@ -19,7 +19,7 @@ bool_t rr_mem_overlap(void *block1, usz_t length1, void *block2, usz_t length2); /// @param block2 Address of the other memory block. In cases where there is a clear correct version, /// this should be the correct data to be checked against. /// @param count How many bytes will be checked. -/// @return +/// @return Whether the two memory regions are equal bool_t rr_memequ(void *block1, void *block2, usz_t count); /// @brief Sets all bytes in a memory region all to one byte