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

Diff for /src/include/ctype.h between version 1.8 and 1.9

version 1.8, 2002/12/14 02:34:38 version 1.9, 2002/12/14 14:26:19
Line 134 
Line 134 
   
 static __inline int isupper(int c)  static __inline int isupper(int c)
 {  {
         return (c == EOF ? : (_ctype_ + 1)[(unsigned int)c] & _U);          return (c == EOF ? 0 : (_ctype_ + 1)[(unsigned int)c] & _U);
 }  }
   
 static __inline int isxdigit(int c)  static __inline int isxdigit(int c)

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9