summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Universal/EbcDxe
diff options
context:
space:
mode:
authorShenglei Zhang <shenglei.zhang@intel.com>2018-12-25 11:32:57 +0800
committerLiming Gao <liming.gao@intel.com>2019-01-31 20:19:16 +0800
commit357fc11c35b71f232cfb6317534a02fba1baa770 (patch)
tree32cc377bffcc9a0a4a74f5c5fb35d2fe6ce38e07 /MdeModulePkg/Universal/EbcDxe
parent8c9b49500d59d9e9d24a2ab595b5e1e7de0676c1 (diff)
downloadedk2-357fc11c35b71f232cfb6317534a02fba1baa770.tar.gz
edk2-357fc11c35b71f232cfb6317534a02fba1baa770.tar.bz2
edk2-357fc11c35b71f232cfb6317534a02fba1baa770.zip
MdeModulePkg/EbcDebugger: Use AsciiCharToUpper and CharToUpper
InternalUnicodeToUpper and InternalAsciiToUpper are internal functions, so they are substituted by public functions AsciiCharToUpper and CharToUpper. And their implements are removed. https://bugzilla.tianocore.org/show_bug.cgi?id=1369 Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Hao Wu <hao.a.wu@intel.com> Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Star Zeng <star.zeng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com> Reviewed-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
Diffstat (limited to 'MdeModulePkg/Universal/EbcDxe')
-rw-r--r--MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c39
1 files changed, 4 insertions, 35 deletions
diff --git a/MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c b/MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c
index 8495af9900..1f90ab02de 100644
--- a/MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c
+++ b/MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c
@@ -307,37 +307,6 @@ AsciiAtoi (
return RetVal;
}
-/**
-
- Convert the character to upper case.
-
- @param Chr the character to be converted.
-
-**/
-STATIC
-CHAR16
-InternalUnicodeToUpper (
- IN CHAR16 Chr
- )
-{
- return (Chr >= L'a' && Chr <= L'z') ? Chr - (L'a' - L'A') : Chr;
-}
-
-/**
-
- Convert the character to upper case.
-
- @param Chr the character to be converted.
-
-**/
-STATIC
-CHAR8
-InternalAsciiToUpper (
- IN CHAR8 Chr
- )
-{
- return (Chr >= 'a' && Chr <= 'z') ? Chr - ('a' - 'A') : Chr;
-}
/**
Compare the Unicode and Ascii string pointed by String to the string pointed by String2.
@@ -390,12 +359,12 @@ StriCmp (
)
{
while ((*String != L'\0') &&
- (InternalUnicodeToUpper (*String) == InternalUnicodeToUpper (*String2))) {
+ (CharToUpper (*String) == CharToUpper (*String2))) {
String++;
String2++;
}
- return InternalUnicodeToUpper (*String) - InternalUnicodeToUpper (*String2);
+ return CharToUpper (*String) - CharToUpper (*String2);
}
/**
@@ -418,12 +387,12 @@ StriCmpUnicodeAndAscii (
)
{
while ((*String != L'\0') &&
- (InternalUnicodeToUpper (*String) == (CHAR16)InternalAsciiToUpper (*String2))) {
+ (CharToUpper (*String) == (CHAR16)AsciiCharToUpper (*String2))) {
String++;
String2++;
}
- return InternalUnicodeToUpper (*String) - (CHAR16)InternalAsciiToUpper (*String2);
+ return CharToUpper (*String) - (CHAR16)AsciiCharToUpper (*String2);
}
/**