]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c
MdeModulePkg/EbcDebugger: Change function names
[mirror_edk2.git] / MdeModulePkg / Universal / EbcDxe / EbcDebugger / EdbSupportString.c
index 78a0559079e324790847bfe12834d4286f4fe7ea..8495af99002e8b4d7a0b329a5098e619fcc40f82 100644 (file)
@@ -1,6 +1,6 @@
 /** @file\r
 \r
-Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2007 - 2019, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -316,7 +316,7 @@ AsciiAtoi (
 **/\r
 STATIC\r
 CHAR16\r
-UnicodeToUpper (\r
+InternalUnicodeToUpper (\r
   IN      CHAR16                    Chr\r
   )\r
 {\r
@@ -332,7 +332,7 @@ UnicodeToUpper (
 **/\r
 STATIC\r
 CHAR8\r
-AsciiToUpper (\r
+InternalAsciiToUpper (\r
   IN      CHAR8                     Chr\r
   )\r
 {\r
@@ -390,12 +390,12 @@ StriCmp (
   )\r
 {\r
   while ((*String != L'\0') &&\r
-         (UnicodeToUpper (*String) == UnicodeToUpper (*String2))) {\r
+         (InternalUnicodeToUpper (*String) == InternalUnicodeToUpper (*String2))) {\r
     String++;\r
     String2++;\r
   }\r
 \r
-  return UnicodeToUpper (*String) - UnicodeToUpper (*String2);\r
+  return InternalUnicodeToUpper (*String) - InternalUnicodeToUpper (*String2);\r
 }\r
 \r
 /**\r
@@ -418,12 +418,12 @@ StriCmpUnicodeAndAscii (
   )\r
 {\r
   while ((*String != L'\0') &&\r
-         (UnicodeToUpper (*String) == (CHAR16)AsciiToUpper (*String2))) {\r
+         (InternalUnicodeToUpper (*String) == (CHAR16)InternalAsciiToUpper (*String2))) {\r
     String++;\r
     String2++;\r
   }\r
 \r
-  return UnicodeToUpper (*String) - (CHAR16)AsciiToUpper (*String2);\r
+  return InternalUnicodeToUpper (*String) - (CHAR16)InternalAsciiToUpper (*String2);\r
 }\r
 \r
 /**\r