From 661f59838235815b5073a0ef95f410003639519e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 16 Aug 2020 16:14:04 -0400 Subject: rename non-compiled files to *.h --- src/iso646/and.c | 15 --------------- src/iso646/and.h | 15 +++++++++++++++ src/iso646/and_eq.c | 15 --------------- src/iso646/and_eq.h | 15 +++++++++++++++ src/iso646/bitand.c | 15 --------------- src/iso646/bitand.h | 15 +++++++++++++++ src/iso646/bitor.c | 15 --------------- src/iso646/bitor.h | 15 +++++++++++++++ src/iso646/compl.c | 15 --------------- src/iso646/compl.h | 15 +++++++++++++++ src/iso646/not.c | 15 --------------- src/iso646/not.h | 15 +++++++++++++++ src/iso646/not_eq.c | 15 --------------- src/iso646/not_eq.h | 15 +++++++++++++++ src/iso646/or.c | 15 --------------- src/iso646/or.h | 15 +++++++++++++++ src/iso646/or_eq.c | 15 --------------- src/iso646/or_eq.h | 15 +++++++++++++++ src/iso646/xor.c | 15 --------------- src/iso646/xor.h | 15 +++++++++++++++ src/iso646/xor_eq.c | 15 --------------- src/iso646/xor_eq.h | 15 +++++++++++++++ 22 files changed, 165 insertions(+), 165 deletions(-) delete mode 100644 src/iso646/and.c create mode 100644 src/iso646/and.h delete mode 100644 src/iso646/and_eq.c create mode 100644 src/iso646/and_eq.h delete mode 100644 src/iso646/bitand.c create mode 100644 src/iso646/bitand.h delete mode 100644 src/iso646/bitor.c create mode 100644 src/iso646/bitor.h delete mode 100644 src/iso646/compl.c create mode 100644 src/iso646/compl.h delete mode 100644 src/iso646/not.c create mode 100644 src/iso646/not.h delete mode 100644 src/iso646/not_eq.c create mode 100644 src/iso646/not_eq.h delete mode 100644 src/iso646/or.c create mode 100644 src/iso646/or.h delete mode 100644 src/iso646/or_eq.c create mode 100644 src/iso646/or_eq.h delete mode 100644 src/iso646/xor.c create mode 100644 src/iso646/xor.h delete mode 100644 src/iso646/xor_eq.c create mode 100644 src/iso646/xor_eq.h (limited to 'src/iso646') diff --git a/src/iso646/and.c b/src/iso646/and.c deleted file mode 100644 index 73766d5e..00000000 --- a/src/iso646/and.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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.h b/src/iso646/and.h new file mode 100644 index 00000000..73766d5e --- /dev/null +++ b/src/iso646/and.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index 5fb8d24d..00000000 --- a/src/iso646/and_eq.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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/and_eq.h b/src/iso646/and_eq.h new file mode 100644 index 00000000..5fb8d24d --- /dev/null +++ b/src/iso646/and_eq.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index 2f67d200..00000000 --- a/src/iso646/bitand.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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/bitand.h b/src/iso646/bitand.h new file mode 100644 index 00000000..2f67d200 --- /dev/null +++ b/src/iso646/bitand.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index 22437fe2..00000000 --- a/src/iso646/bitor.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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/bitor.h b/src/iso646/bitor.h new file mode 100644 index 00000000..22437fe2 --- /dev/null +++ b/src/iso646/bitor.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index 50aa0cd3..00000000 --- a/src/iso646/compl.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** alternate spelling for ~ **/ - -#define compl ~ - -/*** -provides an alternative means of specifying the unary bitwise-compliment -operator (OPERATOR(~)). -***/ - -/* -VALUE_FIXED(OPERATOR(~)) -STDC(199409) -*/ diff --git a/src/iso646/compl.h b/src/iso646/compl.h new file mode 100644 index 00000000..50aa0cd3 --- /dev/null +++ b/src/iso646/compl.h @@ -0,0 +1,15 @@ +#include + +/** alternate spelling for ~ **/ + +#define compl ~ + +/*** +provides an alternative means of specifying the unary bitwise-compliment +operator (OPERATOR(~)). +***/ + +/* +VALUE_FIXED(OPERATOR(~)) +STDC(199409) +*/ diff --git a/src/iso646/not.c b/src/iso646/not.c deleted file mode 100644 index 4e7e4fe3..00000000 --- a/src/iso646/not.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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.h b/src/iso646/not.h new file mode 100644 index 00000000..4e7e4fe3 --- /dev/null +++ b/src/iso646/not.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index 3abe6ee4..00000000 --- a/src/iso646/not_eq.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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/not_eq.h b/src/iso646/not_eq.h new file mode 100644 index 00000000..3abe6ee4 --- /dev/null +++ b/src/iso646/not_eq.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index 3e9cfbd9..00000000 --- a/src/iso646/or.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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.h b/src/iso646/or.h new file mode 100644 index 00000000..3e9cfbd9 --- /dev/null +++ b/src/iso646/or.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index d6e8e272..00000000 --- a/src/iso646/or_eq.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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/or_eq.h b/src/iso646/or_eq.h new file mode 100644 index 00000000..d6e8e272 --- /dev/null +++ b/src/iso646/or_eq.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index c981d80d..00000000 --- a/src/iso646/xor.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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.h b/src/iso646/xor.h new file mode 100644 index 00000000..c981d80d --- /dev/null +++ b/src/iso646/xor.h @@ -0,0 +1,15 @@ +#include + +/** 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 deleted file mode 100644 index 9b48138d..00000000 --- a/src/iso646/xor_eq.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** 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) -*/ diff --git a/src/iso646/xor_eq.h b/src/iso646/xor_eq.h new file mode 100644 index 00000000..9b48138d --- /dev/null +++ b/src/iso646/xor_eq.h @@ -0,0 +1,15 @@ +#include + +/** 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) +*/ -- cgit v1.2.1