]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/iso646.h
StdLib: Remove EfiSocketLib and Ip4Config Protocol dependency.
[mirror_edk2.git] / StdLib / Include / iso646.h
index db3450193de31e16f74a565043760b51c9601f5f..d9dc8603461e7e89297405b895c151dd49a6f368 100644 (file)
 #define _ISO646_H\r
 #include  <sys/EfiCdefs.h>\r
 \r
-#define and     &&\r
-#define and_eq  &=\r
-#define bitand  &\r
-#define bitor   |\r
-#define compl   ~\r
-#define not     !\r
-#define not_eq  !=\r
-#define or      ||\r
-#define or_eq   |=\r
-#define xor     ^\r
-#define xor_eq  ^=\r
+#define and     &&    ///< Logical AND of two boolean expressions\r
+#define and_eq  &=    ///< Bitwise AND with assignment to lval\r
+#define bitand  &     ///< Bitwise AND of two scalar expressions\r
+#define bitor   |     ///< Bitwise OR of two scalar expressions\r
+#define compl   ~     ///< Binary complement\r
+#define not     !     ///< Logical complement of a boolean expression\r
+#define not_eq  !=    ///< Not-equal comparison\r
+#define or      ||    ///< Logical OR of two boolean expressions\r
+#define or_eq   |=    ///< Bitwise OR with assignment to lval\r
+#define xor     ^     ///< Exclusive OR\r
+#define xor_eq  ^=    ///< Exclusive OR with assignment to lval\r
 \r
 #endif  /* _ISO646_H */\r