From: Kevin Day Date: Thu, 21 Jan 2021 04:41:08 +0000 (-0600) Subject: Cleanup: comment for memory function. X-Git-Tag: 0.5.3~116 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=eb425679bee4101a976c30d06c1d8fcea95def34;p=fll Cleanup: comment for memory function. --- diff --git a/level_0/f_memory/c/memory.h b/level_0/f_memory/c/memory.h index 685ae1d..aa62ae4 100644 --- a/level_0/f_memory/c/memory.h +++ b/level_0/f_memory/c/memory.h @@ -118,14 +118,14 @@ extern "C" { /** * Create some dynamically allocated array of some length. * + * @param length + * The total number of blocks to be allocated. + * Must be greater than 0. * @param pointer * A pointer that will be updated to the address of the newly allocated memory. * @param size * The block size, in bytes (size * length = allocated size). * Must be greater than 0. - * @param length - * The total number of blocks to be allocated. - * Must be greater than 0. * * @return * F_none on success.