[BACK]Return to defines.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/defines.h between version 1.13 and 1.14

version 1.13, 2012/10/09 19:45:34 version 1.14, 2013/11/22 15:47:35
Line 110 
Line 110 
   
 #define DEBUG(module)   (debug & CONCAT(DEBUG_,module))  #define DEBUG(module)   (debug & CONCAT(DEBUG_,module))
   
   #define ISLOWER(c) (islower((unsigned char)(c)))
   #define ISUPPER(c) (isupper((unsigned char)(c)))
   #define ISDIGIT(c) (isdigit((unsigned char)(c)))
   #define ISXDIGIT(c) (isxdigit((unsigned char)(c)))
   #define ISSPACE(c) (isspace((unsigned char)(c)))
   #define TOUPPER(c) (toupper((unsigned char)(c)))
   #define TOLOWER(c) (tolower((unsigned char)(c)))
   
 #endif  #endif

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