Format: AllC/C++CSSTextshell script Advanced Search
79: #define isSpace(c) ((c) && (c) <= ' ') 80: #define isNum(c) ((c) >= '0' && (c) <= '9') 81: #define isAlpha(c) ( ((c) >= 'A' && (c) <= 'Z') ||\