ref: f2fe6bc81e714ea3e422a0513ac171c9b2101646
dir: /tests/cc/execute/0205-cpparg.c/
#define TOLOWER(c) ((((unsigned)c) - 'A' < 26) ? ((c) | 32) : (c)) int main(void) { char c, *s = "Bla"; c = TOLOWER((unsigned char)*s); if (c != 'b') return 1; return 0; }