* include/ctype.h: Always define macros when inside cygwin.

(isblank): New macro.
This commit is contained in:
Christopher Faylor 2005-03-23 21:04:00 +00:00
parent fcfb011798
commit c6190209b3
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-03-23 Christopher Faylor <cgf@timesys.com>
* include/ctype.h: Always define macros when inside cygwin.
(isblank): New macro.
2005-03-23 Corinna Vinschen <corinna@vinschen.de>
* fhandler.h (fhandler_socket::eid_connect): Make private.

View File

@ -40,8 +40,9 @@ int __cdecl _toupper(int);
extern const char _ctype_[];
#ifndef __cplusplus
#if !defined(__cplusplus) || defined(__INSIDE_CYGWIN__)
#define isalpha(c) ((_ctype_+1)[(unsigned)(c)]&(_U|_L))
#define isblank(c) ((c) == ' ' || (c) == '\t')
#define isupper(c) ((_ctype_+1)[(unsigned)(c)]&_U)
#define islower(c) ((_ctype_+1)[(unsigned)(c)]&_L)
#define isdigit(c) ((_ctype_+1)[(unsigned)(c)]&_N)
@ -60,7 +61,7 @@ extern const char _ctype_[];
__extension__ ({ int __x = (c); isupper(__x) ? (__x - 'A' + 'a') : __x;})
#endif /* !__cplusplus */
#ifndef __STRICT_ANSI__
#if !defined(__STRICT_ANSI__) || defined(__INSIDE_CYGWIN__)
#define isascii(c) ((unsigned)(c)<=0177)
#define toascii(c) ((c)&0177)
#endif