summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/C/Include/Common/BaseTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'BaseTools/Source/C/Include/Common/BaseTypes.h')
-rw-r--r--BaseTools/Source/C/Include/Common/BaseTypes.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/BaseTools/Source/C/Include/Common/BaseTypes.h b/BaseTools/Source/C/Include/Common/BaseTypes.h
index e1282b3a89..751b6f1b3b 100644
--- a/BaseTools/Source/C/Include/Common/BaseTypes.h
+++ b/BaseTools/Source/C/Include/Common/BaseTypes.h
@@ -1,16 +1,16 @@
/** @file
Processor or Compiler specific defines for all supported processors.
- This file is stand alone self consistent set of definitions.
+ This file is stand alone self consistent set of definitions.
- Copyright (c) 2006 - 2014, 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
- http://opensource.org/licenses/bsd-license.php
+ Copyright (c) 2006 - 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
+ http://opensource.org/licenses/bsd-license.php
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
@@ -49,7 +49,7 @@
//
#ifndef TRUE
//
-// BugBug: UEFI specification claims 1 and 0. We are concerned about the
+// BugBug: UEFI specification claims 1 and 0. We are concerned about the
// complier portability so we did it this way.
//
#define TRUE ((BOOLEAN)(1==1))
@@ -65,7 +65,7 @@
//
// Support for variable length argument lists using the ANSI standard.
-//
+//
// Since we are using the ANSI standard we used the standard naming and
// did not follow the coding convention
//
@@ -151,7 +151,7 @@ typedef struct {
} IPv6_ADDRESS;
//
-// Macro that returns the byte offset of a field in a data structure.
+// Macro that returns the byte offset of a field in a data structure.
//
#define OFFSET_OF(TYPE, Field) ((UINTN) &(((TYPE *)0)->Field))
@@ -177,8 +177,8 @@ typedef struct {
(Value) = (UINTN)((UINTN) (Value) + (UINTN) (Adjustment))
//
-// Return the maximum of two operands.
-// This macro returns the maximum of two operand specified by a and b.
+// Return the maximum of two operands.
+// This macro returns the maximum of two operand specified by a and b.
// Both a and b must be the same numerical types, signed or unsigned.
//
#define MAX(a, b) \
@@ -186,8 +186,8 @@ typedef struct {
//
-// Return the minimum of two operands.
-// This macro returns the minimal of two operand specified by a and b.
+// Return the minimum of two operands.
+// This macro returns the minimal of two operand specified by a and b.
// Both a and b must be the same numerical types, signed or unsigned.
//
#define MIN(a, b) \