[BACK]Return to ctype.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/ctype.h between version 1.14 and 1.15

version 1.14, 2003/06/10 22:00:31 version 1.15, 2004/01/13 15:47:24
Line 56 
Line 56 
 extern const short      *_tolower_tab_;  extern const short      *_tolower_tab_;
 extern const short      *_toupper_tab_;  extern const short      *_toupper_tab_;
   
   /* extern __inline is a GNU C extension */
   #ifdef __GNUC__
   #define __CTYPE_INLINE  extern __inline
   #else
   #define __CTYPE_INLINE  static inline
   #endif
   
   #if defined(__GNUC__) || defined(_ANSI_LIBRARY)
 int     isalnum(int);  int     isalnum(int);
 int     isalpha(int);  int     isalpha(int);
 int     iscntrl(int);  int     iscntrl(int);
Line 78 
Line 86 
 int     _toupper(int);  int     _toupper(int);
 #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */  #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
   
   #endif /* __GNUC__ || _ANSI_LIBRARY */
   
 #ifndef _ANSI_LIBRARY  #ifndef _ANSI_LIBRARY
   
 extern __inline int isalnum(int c)  __CTYPE_INLINE int isalnum(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_U|_L|_N)));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_U|_L|_N)));
 }  }
   
 extern __inline int isalpha(int c)  __CTYPE_INLINE int isalpha(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_U|_L)));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_U|_L)));
 }  }
   
 extern __inline int iscntrl(int c)  __CTYPE_INLINE int iscntrl(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _C));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _C));
 }  }
   
 extern __inline int isdigit(int c)  __CTYPE_INLINE int isdigit(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _N));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _N));
 }  }
   
 extern __inline int isgraph(int c)  __CTYPE_INLINE int isgraph(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N)));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N)));
 }  }
   
 extern __inline int islower(int c)  __CTYPE_INLINE int islower(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _L));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _L));
 }  }
   
 extern __inline int isprint(int c)  __CTYPE_INLINE int isprint(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N|_B)));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N|_B)));
 }  }
   
 extern __inline int ispunct(int c)  __CTYPE_INLINE int ispunct(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _P));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _P));
 }  }
   
 extern __inline int isspace(int c)  __CTYPE_INLINE int isspace(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _S));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _S));
 }  }
   
 extern __inline int isupper(int c)  __CTYPE_INLINE int isupper(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _U));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _U));
 }  }
   
 extern __inline int isxdigit(int c)  __CTYPE_INLINE int isxdigit(int c)
 {  {
         return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_N|_X)));          return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_N|_X)));
 }  }
   
 extern __inline int tolower(int c)  __CTYPE_INLINE int tolower(int c)
 {  {
         if ((unsigned int)c > 0177)          if ((unsigned int)c > 0177)
                 return (c);                  return (c);
         return ((_tolower_tab_ + 1)[c]);          return ((_tolower_tab_ + 1)[c]);
 }  }
   
 extern __inline int toupper(int c)  __CTYPE_INLINE int toupper(int c)
 {  {
         if ((unsigned int)c > 0177)          if ((unsigned int)c > 0177)
                 return (c);                  return (c);
Line 150 
Line 160 
 }  }
   
 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)  #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
 extern __inline int isblank(int c)  __CTYPE_INLINE int isblank(int c)
 {  {
         return (c == ' ' || c == '\t');          return (c == ' ' || c == '\t');
 }  }
   
 extern __inline int isascii(int c)  __CTYPE_INLINE int isascii(int c)
 {  {
         return ((unsigned int)c <= 0177);          return ((unsigned int)c <= 0177);
 }  }
   
 extern __inline int toascii(int c)  __CTYPE_INLINE int toascii(int c)
 {  {
         return (c & 0177);          return (c & 0177);
 }  }
   
 extern __inline int _tolower(int c)  __CTYPE_INLINE int _tolower(int c)
 {  {
         return (c - 'A' + 'a');          return (c - 'A' + 'a');
 }  }
   
 extern __inline int _toupper(int c)  __CTYPE_INLINE int _toupper(int c)
 {  {
         return (c - 'a' + 'A');          return (c - 'a' + 'A');
 }  }
Line 179 
Line 189 
 #endif /* !_ANSI_LIBRARY */  #endif /* !_ANSI_LIBRARY */
   
 __END_DECLS  __END_DECLS
   
   #undef __CTYPE_INLINE
   
 #endif /* !_CTYPE_H_ */  #endif /* !_CTYPE_H_ */

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15