]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/Common/OsPath.c
BaseTools: Clean up source files
[mirror_edk2.git] / BaseTools / Source / C / Common / OsPath.c
index 088730689da456139271d44bd57aed350a0d03b5..b46516d292da34c3a47cd2652a073a2af7276644 100644 (file)
@@ -1,27 +1,21 @@
 /** @file\r
+Functions useful to operate file directories by parsing file path.\r
 \r
-Copyright (c) 2007 - 2008, Intel Corporation                                                         \r
-All rights reserved. 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
-http://opensource.org/licenses/bsd-license.php                                            \r
-                                                                                          \r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
+Copyright (c) 2007 - 2018, 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
+http://opensource.org/licenses/bsd-license.php\r
 \r
-Module Name:\r
-\r
-  StringFuncs.c\r
-\r
-Abstract:\r
-\r
-  Functions useful to operate file directories by parsing file path.\r
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 \r
 **/\r
 \r
 #include <stdio.h>\r
 #include <stdlib.h>\r
 #include <string.h>\r
+#include "CommonLib.h"\r
 #include "OsPath.h"\r
 \r
 //\r
@@ -93,7 +87,7 @@ Returns:
   }\r
 \r
   //\r
-  // \r
+  //\r
   //\r
   for (Offset = Length; Offset > 0; Offset--) {\r
     if ((Return[Offset] == '/') || (Return[Offset] == '\\')) {\r
@@ -201,7 +195,7 @@ Returns:
   }\r
 \r
   //\r
-  // \r
+  //\r
   //\r
   for (Offset = Length; Offset > 0; Offset--) {\r
     if ((Return[Offset] == '/') || (Return[Offset] == '\\')) {\r
@@ -294,7 +288,7 @@ Returns:
 --*/\r
 {\r
   FILE    *InputFile;\r
-  InputFile = fopen (InputFileName, "rb");\r
+  InputFile = fopen (LongFilePath (InputFileName), "rb");\r
   if (InputFile == NULL) {\r
     return FALSE;\r
   } else {\r