From: jcarsey Date: Mon, 12 Sep 2011 15:34:11 +0000 (+0000) Subject: ShellPkg: Add missing function descriptor comment. X-Git-Tag: edk2-stable201903~14242 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=0f87f732e9ed54d0730a1887b6cfe5b5c0ee165f 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 --- 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 #include +/** + 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)