]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ShellPkg: Add missing function descriptor comment.
authorjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 12 Sep 2011 15:34:11 +0000 (15:34 +0000)
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 12 Sep 2011 15:34:11 +0000 (15:34 +0000)
Submitted-by: jcarsey
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12326 6f19259b-4bc3-4df7-8a09-765794883524

ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c

index d1a056898a52eff9a72214145fbceeda946f5890..476194532a5983d96af3325cc245d2bea5fd2fc6 100644 (file)
 #include <Library/ShellCEntryLib.h>\r
 #include <Library/SortLib.h>\r
 \r
+/**\r
+  Test comparator.\r
+\r
+  @param[in] b1   The first INTN\r
+  @param[in] b2   The other INTN\r
+\r
+  @retval 0       They are the same.\r
+  @retval -1      b1 is less than b2\r
+  @retval 1       b1 is greater then b2\r
+**/\r
 INTN\r
 EFIAPI\r
 Test(CONST VOID*b1, CONST VOID*b2)\r