diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1994-10-09 11:18:44 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1994-10-09 11:18:44 +0000 |
| commit | 09b133a008fa2d60fddcc4ed45972d19d5875d52 (patch) | |
| tree | 94228c70dde4b55a9af300db22309e30e02959a9 | |
| parent | 7afcaa86dbf0e0151a3e92b35169dbc013d9e275 (diff) | |
Notes
| -rw-r--r-- | include/_ctype.h | 13 | ||||
| -rw-r--r-- | include/ctype.h | 13 |
2 files changed, 0 insertions, 26 deletions
diff --git a/include/_ctype.h b/include/_ctype.h index 0a34886f5557..671c107667f0 100644 --- a/include/_ctype.h +++ b/include/_ctype.h @@ -103,16 +103,9 @@ __END_DECLS #endif #if defined(_USE_CTYPE_INLINE_) - -#ifndef EOF -#define EOF (-1) -#endif - static __inline int __istype(_BSD_RUNE_T_ c, unsigned long f) { - if (c == EOF) - return 0; if (c < 0) c = (unsigned char) c; return((((c & _CRMASK) ? ___runetype(c) : @@ -122,8 +115,6 @@ __istype(_BSD_RUNE_T_ c, unsigned long f) static __inline int __isctype(_BSD_RUNE_T_ c, unsigned long f) { - if (c == EOF) - return 0; if (c < 0) c = (unsigned char) c; return((((c & _CRMASK) ? 0 : @@ -135,8 +126,6 @@ __isctype(_BSD_RUNE_T_ c, unsigned long f) static __inline _BSD_RUNE_T_ toupper(_BSD_RUNE_T_ c) { - if (c == EOF) - return EOF; if (c < 0) c = (unsigned char) c; return((c & _CRMASK) ? @@ -146,8 +135,6 @@ toupper(_BSD_RUNE_T_ c) static __inline _BSD_RUNE_T_ tolower(_BSD_RUNE_T_ c) { - if (c == EOF) - return EOF; if (c < 0) c = (unsigned char) c; return((c & _CRMASK) ? diff --git a/include/ctype.h b/include/ctype.h index 0a34886f5557..671c107667f0 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -103,16 +103,9 @@ __END_DECLS #endif #if defined(_USE_CTYPE_INLINE_) - -#ifndef EOF -#define EOF (-1) -#endif - static __inline int __istype(_BSD_RUNE_T_ c, unsigned long f) { - if (c == EOF) - return 0; if (c < 0) c = (unsigned char) c; return((((c & _CRMASK) ? ___runetype(c) : @@ -122,8 +115,6 @@ __istype(_BSD_RUNE_T_ c, unsigned long f) static __inline int __isctype(_BSD_RUNE_T_ c, unsigned long f) { - if (c == EOF) - return 0; if (c < 0) c = (unsigned char) c; return((((c & _CRMASK) ? 0 : @@ -135,8 +126,6 @@ __isctype(_BSD_RUNE_T_ c, unsigned long f) static __inline _BSD_RUNE_T_ toupper(_BSD_RUNE_T_ c) { - if (c == EOF) - return EOF; if (c < 0) c = (unsigned char) c; return((c & _CRMASK) ? @@ -146,8 +135,6 @@ toupper(_BSD_RUNE_T_ c) static __inline _BSD_RUNE_T_ tolower(_BSD_RUNE_T_ c) { - if (c == EOF) - return EOF; if (c < 0) c = (unsigned char) c; return((c & _CRMASK) ? |
