]> Kevux Git Server - fll/commitdiff
Cleanup: comment for memory function.
authorKevin Day <thekevinday@gmail.com>
Thu, 21 Jan 2021 04:41:08 +0000 (22:41 -0600)
committerKevin Day <thekevinday@gmail.com>
Thu, 21 Jan 2021 04:41:08 +0000 (22:41 -0600)
level_0/f_memory/c/memory.h

index 685ae1d47e361d4134beb78fbcd8b2db413d5e23..aa62ae4407a11b8c2d5f4bbd5a1c5f1cae5a97ad 100644 (file)
@@ -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.