]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/Include/iso646.h
Update or add comments to files and functions for use by Doxygen.
[mirror_edk2.git] / StdLib / Include / iso646.h
CommitLineData
2aa62f2b 1/** @file\r
2 Provides alternative "spellings" for several C operators.\r
3\r
4 The header <iso646.h> defines the following eleven macros (on the left) that expand\r
5 to the corresponding tokens (on the right).\r
6\r
7Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
8This program and the accompanying materials are licensed and made available under\r
9the terms and conditions of the BSD License that accompanies this distribution.\r
10The full text of the license may be found at\r
11http://opensource.org/licenses/bsd-license.php.\r
12\r
13THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15**/\r
16#ifndef _ISO646_H\r
17#define _ISO646_H\r
18#include <sys/EfiCdefs.h>\r
19\r
20#define and &&\r
21#define and_eq &=\r
22#define bitand &\r
23#define bitor |\r
24#define compl ~\r
25#define not !\r
26#define not_eq !=\r
27#define or ||\r
28#define or_eq |=\r
29#define xor ^\r
30#define xor_eq ^=\r
31\r
32#endif /* _ISO646_H */\r