summaryrefslogtreecommitdiff
path: root/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
commit0f87f732e9ed54d0730a1887b6cfe5b5c0ee165f (patch)
treed431a302dbb815334ecc696db00123011d988e89 /ShellPkg
parenta6d4d0ac16c4effe9797d438735769feb0354a8a (diff)
downloadedk2-platforms-0f87f732e9ed54d0730a1887b6cfe5b5c0ee165f.tar.xz
ShellPkg: Add missing function descriptor comment.
Submitted-by: jcarsey git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12326 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg')
-rw-r--r--ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c b/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c
index d1a056898a..476194532a 100644
--- a/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c
+++ b/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)