summaryrefslogtreecommitdiff
path: root/src/iso646
diff options
context:
space:
mode:
Diffstat (limited to 'src/iso646')
-rw-r--r--src/iso646/and.c9
-rw-r--r--src/iso646/and_eq.c9
-rw-r--r--src/iso646/bitand.c9
-rw-r--r--src/iso646/bitor.c9
-rw-r--r--src/iso646/compl.c13
-rw-r--r--src/iso646/not.c9
-rw-r--r--src/iso646/not_eq.c9
-rw-r--r--src/iso646/or.c9
-rw-r--r--src/iso646/or_eq.c9
-rw-r--r--src/iso646/xor.c9
-rw-r--r--src/iso646/xor_eq.c9
11 files changed, 96 insertions, 7 deletions
diff --git a/src/iso646/and.c b/src/iso646/and.c
index 132a2bc5..73766d5e 100644
--- a/src/iso646/and.c
+++ b/src/iso646/and.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for && **/
+
#define and &&
+/***
+provides an alternative means of specifying the binary logical AND operator
+(OPERATOR(&&)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(&&))
STDC(199409)
*/
diff --git a/src/iso646/and_eq.c b/src/iso646/and_eq.c
index 59c40bfd..5fb8d24d 100644
--- a/src/iso646/and_eq.c
+++ b/src/iso646/and_eq.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for &= **/
+
#define and_eq &=
+/***
+provides an alternative means of specifying the binary bitwise-AND and assign
+operator (OPERATOR(&=)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(&=))
STDC(199409)
*/
diff --git a/src/iso646/bitand.c b/src/iso646/bitand.c
index 76fa23aa..2f67d200 100644
--- a/src/iso646/bitand.c
+++ b/src/iso646/bitand.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for & **/
+
#define bitand &
+/***
+provides an alternative means of specifying the binary bitwise-AND operator
+(OPERATOR(&)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(&))
STDC(199409)
*/
diff --git a/src/iso646/bitor.c b/src/iso646/bitor.c
index c915db36..22437fe2 100644
--- a/src/iso646/bitor.c
+++ b/src/iso646/bitor.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for | **/
+
#define bitor |
+/***
+provides an alternative means of specifying the binary bitwise-OR operator
+(OPERATOR(|)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(|))
STDC(199409)
*/
diff --git a/src/iso646/compl.c b/src/iso646/compl.c
index a94d5780..50aa0cd3 100644
--- a/src/iso646/compl.c
+++ b/src/iso646/compl.c
@@ -1,16 +1,15 @@
#include <iso646.h>
-#define compl ~
-/** alternate spelling of ~ **/
+/** alternate spelling for ~ **/
+
+#define compl ~
/***
-is an alternate spelling of the bitwise complement operator (OPERATOR(~)).
+provides an alternative means of specifying the unary bitwise-compliment
+operator (OPERATOR(~)).
***/
/*
-VALUE_FIXED(~)
-*/
-
-/*
+VALUE_FIXED(OPERATOR(~))
STDC(199409)
*/
diff --git a/src/iso646/not.c b/src/iso646/not.c
index f0baeb04..4e7e4fe3 100644
--- a/src/iso646/not.c
+++ b/src/iso646/not.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for ! **/
+
#define not !
+/***
+provides an alternative means of specifying the unary logical-NOT operator
+(OPERATOR(!)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(!))
STDC(199409)
*/
diff --git a/src/iso646/not_eq.c b/src/iso646/not_eq.c
index 3576acc6..3abe6ee4 100644
--- a/src/iso646/not_eq.c
+++ b/src/iso646/not_eq.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for != **/
+
#define not_eq !=
+/***
+provides an alternative means of specifying the binary logical-NOT and assign
+operator (OPERATOR(!=)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(!=))
STDC(199409)
*/
diff --git a/src/iso646/or.c b/src/iso646/or.c
index 4e05b37f..3e9cfbd9 100644
--- a/src/iso646/or.c
+++ b/src/iso646/or.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for || **/
+
#define or ||
+/***
+provides an alternative means of specifying the binary logical-OR operator
+(OPERATOR(||)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(||))
STDC(199409)
*/
diff --git a/src/iso646/or_eq.c b/src/iso646/or_eq.c
index 28a5a672..d6e8e272 100644
--- a/src/iso646/or_eq.c
+++ b/src/iso646/or_eq.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for |= **/
+
#define or_eq |=
+/***
+provides an alternative means of specifying the binary bitwise-OR and assign
+operator (OPERATOR(|=)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(|=))
STDC(199409)
*/
diff --git a/src/iso646/xor.c b/src/iso646/xor.c
index 6aa1a1be..c981d80d 100644
--- a/src/iso646/xor.c
+++ b/src/iso646/xor.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for ^ **/
+
#define xor ^
+/***
+provides an alternative means of specifying the binary bitwise-XOR operator
+(OPERATOR(^)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(^))
STDC(199409)
*/
diff --git a/src/iso646/xor_eq.c b/src/iso646/xor_eq.c
index 4c6dd410..9b48138d 100644
--- a/src/iso646/xor_eq.c
+++ b/src/iso646/xor_eq.c
@@ -1,6 +1,15 @@
#include <iso646.h>
+
+/** alternative spelling for ^= **/
+
#define xor_eq ^=
+/***
+provides an alternative means of specifying the binary bitwise-OR and assign
+operator (OPERATOR(^=)).
+***/
+
/*
+VALUE_FIXED(OPERATOR(^=))
STDC(199409)
*/