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

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

version 1.15, 2004/01/13 15:47:24 version 1.16, 2004/01/15 20:01:27
Line 63 
Line 63 
 #define __CTYPE_INLINE  static inline  #define __CTYPE_INLINE  static inline
 #endif  #endif
   
 #if defined(__GNUC__) || defined(_ANSI_LIBRARY)  #if defined(__GNUC__) || defined(_ANSI_LIBRARY) || defined(lint)
 int     isalnum(int);  int     isalnum(int);
 int     isalpha(int);  int     isalpha(int);
 int     iscntrl(int);  int     iscntrl(int);
Line 86 
Line 86 
 int     _toupper(int);  int     _toupper(int);
 #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */  #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
   
 #endif /* __GNUC__ || _ANSI_LIBRARY */  #endif /* __GNUC__ || _ANSI_LIBRARY || lint */
   
 #ifndef _ANSI_LIBRARY  #if !defined(_ANSI_LIBRARY) && !defined(lint)
   
 __CTYPE_INLINE int isalnum(int c)  __CTYPE_INLINE int isalnum(int c)
 {  {
Line 186 
Line 186 
 }  }
 #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */  #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
   
 #endif /* !_ANSI_LIBRARY */  #endif /* !_ANSI_LIBRARY && !lint */
   
 __END_DECLS  __END_DECLS
   

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