Added the return type to the rr_memequ doxygen comment

This commit is contained in:
Eric-Paul Ickhorn 2023-12-01 16:37:41 +01:00
parent de3ac20422
commit 22462bf2e7
Signed by: epickh
GPG Key ID: F5EBBE013924D95F
1 changed files with 1 additions and 1 deletions

View File

@ -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, /// @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. /// this should be the correct data to be checked against.
/// @param count How many bytes will be checked. /// @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); bool_t rr_memequ(void *block1, void *block2, usz_t count);
/// @brief Sets all bytes in a memory region all to one byte /// @brief Sets all bytes in a memory region all to one byte