summaryrefslogtreecommitdiff
path: root/StdLib/Include/iso646.h
diff options
context:
space:
mode:
authordarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2011-08-05 23:02:43 +0000
committerdarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2011-08-05 23:02:43 +0000
commit59d13433e7cbc810a6268d38141b0d1db353fa6e (patch)
tree02e2b8b0546775cc30f5da35d2bf4013b422b28f /StdLib/Include/iso646.h
parent39f4382a972d5916a43aa588baee2635dbda4089 (diff)
downloadedk2-platforms-59d13433e7cbc810a6268d38141b0d1db353fa6e.tar.xz
Update or add comments to files and functions for use by Doxygen.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12093 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'StdLib/Include/iso646.h')
-rw-r--r--StdLib/Include/iso646.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/StdLib/Include/iso646.h b/StdLib/Include/iso646.h
index db3450193d..d9dc860346 100644
--- a/StdLib/Include/iso646.h
+++ b/StdLib/Include/iso646.h
@@ -17,16 +17,16 @@
#define _ISO646_H
#include <sys/EfiCdefs.h>
-#define and &&
-#define and_eq &=
-#define bitand &
-#define bitor |
-#define compl ~
-#define not !
-#define not_eq !=
-#define or ||
-#define or_eq |=
-#define xor ^
-#define xor_eq ^=
+#define and && ///< Logical AND of two boolean expressions
+#define and_eq &= ///< Bitwise AND with assignment to lval
+#define bitand & ///< Bitwise AND of two scalar expressions
+#define bitor | ///< Bitwise OR of two scalar expressions
+#define compl ~ ///< Binary complement
+#define not ! ///< Logical complement of a boolean expression
+#define not_eq != ///< Not-equal comparison
+#define or || ///< Logical OR of two boolean expressions
+#define or_eq |= ///< Bitwise OR with assignment to lval
+#define xor ^ ///< Exclusive OR
+#define xor_eq ^= ///< Exclusive OR with assignment to lval
#endif /* _ISO646_H */