mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: fix comments in BaseSortLib
The comments are incorrect for the base version of this lib. Reviewed-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Jian J Wang <jian.j.wang@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Cc: Star Zeng <star.zeng@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com>
This commit is contained in:
parent
15666b8cd0
commit
a653a52551
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
Library used for sorting routines.
|
||||
|
||||
Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved. <BR>
|
||||
Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved. <BR>
|
||||
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
|
||||
|
@ -193,14 +193,12 @@ DevicePathCompare (
|
|||
}
|
||||
|
||||
/**
|
||||
Function to compare 2 strings without regard to case of the characters.
|
||||
Not supported in Base version.
|
||||
|
||||
@param[in] Buffer1 Pointer to String to compare.
|
||||
@param[in] Buffer2 Pointer to second String to compare.
|
||||
@param[in] Buffer1 Ignored.
|
||||
@param[in] Buffer2 Ignored.
|
||||
|
||||
@retval 0 Buffer1 equal to Buffer2.
|
||||
@return < 0 Buffer1 is less than Buffer2.
|
||||
@return > 0 Buffer1 is greater than Buffer2.
|
||||
ASSERT and return 0.
|
||||
**/
|
||||
INTN
|
||||
EFIAPI
|
||||
|
@ -215,14 +213,12 @@ StringNoCaseCompare (
|
|||
|
||||
|
||||
/**
|
||||
Function to compare 2 strings.
|
||||
Not supported in Base version.
|
||||
|
||||
@param[in] Buffer1 Pointer to String to compare (CHAR16**).
|
||||
@param[in] Buffer2 Pointer to second String to compare (CHAR16**).
|
||||
@param[in] Buffer1 Ignored.
|
||||
@param[in] Buffer2 Ignored.
|
||||
|
||||
@retval 0 Buffer1 equal to Buffer2.
|
||||
@return < 0 Buffer1 is less than Buffer2.
|
||||
@return > 0 Buffer1 is greater than Buffer2.
|
||||
ASSERT and return 0.
|
||||
**/
|
||||
INTN
|
||||
EFIAPI
|
||||
|
|
Loading…
Reference in New Issue