]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/Include/Common/BaseTypes.h
BaseTools: Clean up source files
[mirror_edk2.git] / BaseTools / Source / C / Include / Common / BaseTypes.h
index e1282b3a89878c60ce46aaffd3f92d4858b3f94a..751b6f1b3b42d77da38c02596ab2450ff1e03afe 100644 (file)
@@ -1,16 +1,16 @@
 /** @file\r
   Processor or Compiler specific defines for all supported processors.\r
 \r
-  This file is stand alone self consistent set of definitions. \r
+  This file is stand alone self consistent set of definitions.\r
 \r
-  Copyright (c) 2006 - 2014, 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
+  Copyright (c) 2006 - 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
-  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
+  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
@@ -49,7 +49,7 @@
 //\r
 #ifndef TRUE\r
 //\r
-// BugBug: UEFI specification claims 1 and 0. We are concerned about the \r
+// BugBug: UEFI specification claims 1 and 0. We are concerned about the\r
 //  complier portability so we did it this way.\r
 //\r
 #define TRUE  ((BOOLEAN)(1==1))\r
@@ -65,7 +65,7 @@
 \r
 //\r
 //  Support for variable length argument lists using the ANSI standard.\r
-//  \r
+//\r
 //  Since we are using the ANSI standard we used the standard naming and\r
 //  did not follow the coding convention\r
 //\r
@@ -151,7 +151,7 @@ typedef struct {
 } IPv6_ADDRESS;\r
 \r
 //\r
-// Macro that returns the byte offset of a field in a data structure. \r
+// Macro that returns the byte offset of a field in a data structure.\r
 //\r
 #define OFFSET_OF(TYPE, Field) ((UINTN) &(((TYPE *)0)->Field))\r
 \r
@@ -177,8 +177,8 @@ typedef struct {
   (Value) = (UINTN)((UINTN) (Value) + (UINTN) (Adjustment))\r
 \r
 //\r
-// Return the maximum of two operands. \r
-// This macro returns the maximum of two operand specified by a and b.  \r
+// Return the maximum of two operands.\r
+// This macro returns the maximum of two operand specified by a and b.\r
 // Both a and b must be the same numerical types, signed or unsigned.\r
 //\r
 #define MAX(a, b)                       \\r
@@ -186,8 +186,8 @@ typedef struct {
 \r
 \r
 //\r
-// Return the minimum of two operands. \r
-// This macro returns the minimal of two operand specified by a and b.  \r
+// Return the minimum of two operands.\r
+// This macro returns the minimal of two operand specified by a and b.\r
 // Both a and b must be the same numerical types, signed or unsigned.\r
 //\r
 #define MIN(a, b)                       \\r