summaryrefslogtreecommitdiff
path: root/ShellPkg/Include/Library/SortLib.h
diff options
context:
space:
mode:
Diffstat (limited to 'ShellPkg/Include/Library/SortLib.h')
-rw-r--r--ShellPkg/Include/Library/SortLib.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/ShellPkg/Include/Library/SortLib.h b/ShellPkg/Include/Library/SortLib.h
index 1345a52..2761994 100644
--- a/ShellPkg/Include/Library/SortLib.h
+++ b/ShellPkg/Include/Library/SortLib.h
@@ -1,7 +1,7 @@
/** @file
Library used for sorting and comparison routines.
-Copyright (c) 2009, Intel Corporation
+Copyright (c) 2009, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -18,12 +18,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
/**
Prototype for comparison function for any 2 element types.
- @param[in] Buffer1 pointer to first buffer
- @param[in] Buffer2 pointer to second buffer
+ @param[in] Buffer1 Pointer to first buffer.
+ @param[in] Buffer2 Pointer to second buffer.
- @retval 0 Buffer1 equal to Buffer2
- @return < 0 Buffer1 is less than Buffer2
- @return > 0 Buffer1 is greater than Buffer2
+ @retval 0 Buffer1 equal to Buffer2.
+ @return < 0 Buffer1 is less than Buffer2.
+ @return > 0 Buffer1 is greater than Buffer2.
**/
typedef
INTN
@@ -37,18 +37,18 @@ INTN
Each element must be equally sized.
- if BufferToSort is NULL, then ASSERT.
- if CompareFunction is NULL, then ASSERT.
+ If BufferToSort is NULL, then ASSERT.
+ If CompareFunction is NULL, then ASSERT.
- if Count is < 2 then perform no action.
- if Size is < 1 then perform no action.
+ If Count is < 2 then perform no action.
+ If Size is < 1 then perform no action.
- @param[in,out] BufferToSort on call a Buffer of (possibly sorted) elements
- on return a buffer of sorted elements
- @param[in] Count the number of elements in the buffer to sort
- @param[in] ElementSize Size of an element in bytes
+ @param[in,out] BufferToSort On call a Buffer of (possibly sorted) elements
+ on return a buffer of sorted elements.
+ @param[in] Count The number of elements in the buffer to sort
+ @param[in] ElementSize Size of an element in bytes.
@param[in] CompareFunction The function to call to perform the comparison
- of any 2 elements
+ of any 2 elements.
**/
VOID
EFIAPI