diff options
| author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
| commit | 920746cbb5d18d8aef284d3fe71a57cd52509117 (patch) | |
| tree | 11b4436a58c077f36b1236f0c702af00c763e3f6 /src/ctype | |
| parent | f23336fbc3148105c42eebfa44a22d1164828108 (diff) | |
disable all functions; will strategically reenable them as tested
Diffstat (limited to 'src/ctype')
| -rw-r--r-- | src/ctype/_tolower.c | 5 | ||||
| -rw-r--r-- | src/ctype/_toupper.c | 5 | ||||
| -rw-r--r-- | src/ctype/isalnum.c | 5 | ||||
| -rw-r--r-- | src/ctype/isalpha.c | 5 | ||||
| -rw-r--r-- | src/ctype/isascii.c | 5 | ||||
| -rw-r--r-- | src/ctype/isblank.c | 5 | ||||
| -rw-r--r-- | src/ctype/iscntrl.c | 5 | ||||
| -rw-r--r-- | src/ctype/isdigit.c | 5 | ||||
| -rw-r--r-- | src/ctype/isgraph.c | 5 | ||||
| -rw-r--r-- | src/ctype/islower.c | 5 | ||||
| -rw-r--r-- | src/ctype/isprint.c | 5 | ||||
| -rw-r--r-- | src/ctype/ispunct.c | 5 | ||||
| -rw-r--r-- | src/ctype/isspace.c | 5 | ||||
| -rw-r--r-- | src/ctype/isupper.c | 5 | ||||
| -rw-r--r-- | src/ctype/isxdigit.c | 5 | ||||
| -rw-r--r-- | src/ctype/toascii.c | 5 | ||||
| -rw-r--r-- | src/ctype/tolower.c | 5 | ||||
| -rw-r--r-- | src/ctype/toupper.c | 5 |
18 files changed, 90 insertions, 0 deletions
diff --git a/src/ctype/_tolower.c b/src/ctype/_tolower.c index 461e4402..7ea943df 100644 --- a/src/ctype/_tolower.c +++ b/src/ctype/_tolower.c @@ -1,3 +1,5 @@ +#if 0 + #include <ctype.h> /** convert an uppercase letter to lowercase **/ @@ -17,3 +19,6 @@ LC_CTYPE XOPEN(4) XOBSOLETE(700, FUNCTION(tolower)) */ + + +#endif diff --git a/src/ctype/_toupper.c b/src/ctype/_toupper.c index 65c6c37a..5abdb172 100644 --- a/src/ctype/_toupper.c +++ b/src/ctype/_toupper.c @@ -1,3 +1,5 @@ +#if 0 + #include <ctype.h> /** convert a lowercase letter to uppercase **/ @@ -17,3 +19,6 @@ LC_CTYPE XOPEN(4) XOBSOLETE(700, FUNCTION(toupper)) */ + + +#endif diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c index 8c0f128e..65262037 100644 --- a/src/ctype/isalnum.c +++ b/src/ctype/isalnum.c @@ -1,3 +1,5 @@ +#if 0 + #include <ctype.h> #include <limits.h> #include "_assert.h" @@ -21,3 +23,6 @@ RETURN(0, ARGUMENT(c) is not an alphanumeric character) LC_CTYPE STDC(1) */ + + +#endif diff --git a/src/ctype/isalpha.c b/src/ctype/isalpha.c index 4be702bc..2b363108 100644 --- a/src/ctype/isalpha.c +++ b/src/ctype/isalpha.c @@ -1,3 +1,5 @@ +#if 0 + #include <ctype.h> #include <limits.h> #include "_assert.h" @@ -23,3 +25,6 @@ C_LOCALE(`THIS() is true for characters for which FUNCTION(isupper) or FUNCTION( OTHER_LOCALES(`THIS is true for a set of characters for which none of FUNCTION(iscntrl), FUNCTION(isdigit), FUNCTION(ispunct), or FUNCTION(isspace) is true') STDC(1) */ + + +#endif diff --git a/src/ctype/isascii.c b/src/ctype/isascii.c index fc0067d7..d84d6fe3 100644 --- a/src/ctype/isascii.c +++ b/src/ctype/isascii.c @@ -1,3 +1,5 @@ +#if 0 + #include <ctype.h> /** test whether a character is in the ASCII range **/ @@ -20,3 +22,6 @@ RETURN(ZERO, ARGUMENT(c) is outside of the ASCII range) XOBSOLETE(700) XOPEN(4) */ + + +#endif diff --git a/src/ctype/isblank.c b/src/ctype/isblank.c index 09ca5a99..22d43524 100644 --- a/src/ctype/isblank.c +++ b/src/ctype/isblank.c @@ -1,3 +1,5 @@ +#if 0 + #include <ctype.h> #include <limits.h> #include <locale.h> @@ -28,3 +30,6 @@ RETURN(ZERO, arg(c) is not a blank character) LC_CTYPE STDC(199901) */ + + +#endif diff --git a/src/ctype/iscntrl.c b/src/ctype/iscntrl.c index 0e029751..5d982bcf 100644 --- a/src/ctype/iscntrl.c +++ b/src/ctype/iscntrl.c @@ -1,3 +1,5 @@ +#if 0 + #include <limits.h> #include "_assert.h" #include "_ctype.h" @@ -24,3 +26,6 @@ RETURN(0, ARGUMENT(c) is not a control character) LC_CTYPE STDC(1) */ + + +#endif diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c index 3577ec55..3b42fc71 100644 --- a/src/ctype/isdigit.c +++ b/src/ctype/isdigit.c @@ -1,3 +1,5 @@ +#if 0 + #include <ctype.h> #include <limits.h> #include "_assert.h" @@ -23,3 +25,6 @@ LC_CTYPE C_LOCALE(`THIS() is true for characters CHAR(0), CHAR(1), CHAR(2), CHAR(3), CHAR(4), CHAR(5), CHAR(6), CHAR(7), CHAR(8), and CHAR(9)') STDC(1) */ + + +#endif diff --git a/src/ctype/isgraph.c b/src/ctype/isgraph.c index e2cca5d2..5c3dad44 100644 --- a/src/ctype/isgraph.c +++ b/src/ctype/isgraph.c @@ -1,3 +1,5 @@ +#if 0 + #include <limits.h> #include "_assert.h" #include "_ctype.h" @@ -25,3 +27,6 @@ LC_CTYPE C_LOCALE(`THIS() is true for all printable characters other than SPACE()') STDC(1) */ + + +#endif diff --git a/src/ctype/islower.c b/src/ctype/islower.c index 9e151725..9714f9b4 100644 --- a/src/ctype/islower.c +++ b/src/ctype/islower.c @@ -1,3 +1,5 @@ +#if 0 + #include <limits.h> #include "_assert.h" #include "_ctype.h" @@ -26,3 +28,6 @@ C_LOCALE(`THIS() is true for the characters CHAR(a), CHAR(b), CHAR(c), CHAR(d), OTHER_LOCALES(`THIS() is true for a set of characters for which none of FUNCTION(iscntrl), FUNCTION(isdigit), FUNCTION(ispunct), or FUNCTION(isspace) is true') STDC(1) */ + + +#endif diff --git a/src/ctype/isprint.c b/src/ctype/isprint.c index cad5fe1d..56d9ed19 100644 --- a/src/ctype/isprint.c +++ b/src/ctype/isprint.c @@ -1,3 +1,5 @@ +#if 0 + #include <limits.h> #include "_assert.h" #include "_ctype.h" @@ -25,3 +27,6 @@ LC_CTYPE C_LOCALE(`THIS() is true for any printing character including SPACE()') STDC(1) */ + + +#endif diff --git a/src/ctype/ispunct.c b/src/ctype/ispunct.c index cea5446d..5bb3914e 100644 --- a/src/ctype/ispunct.c +++ b/src/ctype/ispunct.c @@ -1,3 +1,5 @@ +#if 0 + #include <limits.h> #include "_assert.h" #include "_ctype.h" @@ -25,3 +27,6 @@ LC_CTYPE C_LOCALE(`THIS() is true for printing characters for which neither FUNCTION(isspace) nor FUNCTION(isalnum) is true') STDC(1) */ + + +#endif diff --git a/src/ctype/isspace.c b/src/ctype/isspace.c index 9d274399..2a0a4423 100644 --- a/src/ctype/isspace.c +++ b/src/ctype/isspace.c @@ -1,3 +1,5 @@ +#if 0 + #include <limits.h> #include "_assert.h" #include "_ctype.h" @@ -26,3 +28,6 @@ C_LOCALE(`THIS() is true for the standard white-space characters: SPACE, form fe OTHER_LOCALES(`THIS() is true for the standard white-space characters and a set of characters for which FUNCTION(isalnum) is false') STDC(1) */ + + +#endif diff --git a/src/ctype/isupper.c b/src/ctype/isupper.c index c2b06f1f..a9506910 100644 --- a/src/ctype/isupper.c +++ b/src/ctype/isupper.c @@ -1,3 +1,5 @@ +#if 0 + #include <limits.h> #include "_assert.h" #include "_ctype.h" @@ -26,3 +28,6 @@ C_LOCALE(`THIS() is true for the characters CHAR(A), CHAR(B), CHAR(C), CHAR(D), OTHER_LOCALES(`THIS() is true for a set of characters for which none of FUNCTION(iscntrl), FUNCTION(isdigit), FUNCTION(ispunct), or FUNCTION(isspace) is true') STDC(1) */ + + +#endif diff --git a/src/ctype/isxdigit.c b/src/ctype/isxdigit.c index 35f2e9e7..30d9205c 100644 --- a/src/ctype/isxdigit.c +++ b/src/ctype/isxdigit.c @@ -1,3 +1,5 @@ +#if 0 + #include <limits.h> #include "_assert.h" #include "_ctype.h" @@ -25,3 +27,6 @@ LC_CTYPE C_LOCALE(`THIS() is true for the characters CHAR(0), CHAR(1), CHAR(2), CHAR(3), CHAR(4), CHAR(5), CHAR(6), CHAR(7), CHAR(8), CHAR(9), CHAR(a), CHAR(b), CHAR(c), CHAR(d), CHAR(e), CHAR(f), CHAR(A), CHAR(B), CHAR(C), CHAR(D), CHAR(E), and CHAR(F)') STDC(1) */ + + +#endif diff --git a/src/ctype/toascii.c b/src/ctype/toascii.c index 8a625b44..118e97df 100644 --- a/src/ctype/toascii.c +++ b/src/ctype/toascii.c @@ -1,3 +1,5 @@ +#if 0 + #include <ctype.h> /** convert a character to 7-bit ASCII **/ @@ -16,3 +18,6 @@ RETURN(ARGUMENT(c) & 0x7f) XOBSOLETE(700) XOPEN(4) */ + + +#endif diff --git a/src/ctype/tolower.c b/src/ctype/tolower.c index 3a16dbab..6cfe4a3c 100644 --- a/src/ctype/tolower.c +++ b/src/ctype/tolower.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdio.h> #include <limits.h> #include "_ctype.h" @@ -28,3 +30,6 @@ RETURN_FAILURE(ARGUMENT(c), ARGUMENT(c) was not an uppercase letter or it has no LC_CTYPE STDC(1) */ + + +#endif diff --git a/src/ctype/toupper.c b/src/ctype/toupper.c index 741b6784..8c84a423 100644 --- a/src/ctype/toupper.c +++ b/src/ctype/toupper.c @@ -1,3 +1,5 @@ +#if 0 + #include <stdio.h> #include <limits.h> #include "_ctype.h" @@ -28,3 +30,6 @@ RETURN_FAILURE(ARGUMENT(c), ARGUMENT(c) was not a lowercase letter or it has no LC_CTYPE STDC(1) */ + + +#endif |
