summaryrefslogtreecommitdiff
path: root/edk2/ShellPkg
diff options
context:
space:
mode:
authorjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-12 15:34:11 +0000
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-12 15:34:11 +0000
commit662aea518e07125320bb7369d3d4252404c82ac9 (patch)
treea7dadcb6c1905a4c675adca42dd48cf4fed91930 /edk2/ShellPkg
parentc4c433df6faf10fa59c751e0d609609a7ae49b35 (diff)
ShellPkg: Add missing function descriptor comment.
Submitted-by: jcarsey git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk@12326 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'edk2/ShellPkg')
-rw-r--r--edk2/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/edk2/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c b/edk2/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c
index d1a056898..476194532 100644
--- a/edk2/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c
+++ b/edk2/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c
@@ -18,6 +18,16 @@
#include <Library/ShellCEntryLib.h>
#include <Library/SortLib.h>
+/**
+ Test comparator.
+
+ @param[in] b1 The first INTN
+ @param[in] b2 The other INTN
+
+ @retval 0 They are the same.
+ @retval -1 b1 is less than b2
+ @retval 1 b1 is greater then b2
+**/
INTN
EFIAPI
Test(CONST VOID*b1, CONST VOID*b2)