ref: 95552e35a889ea98c511ffc72ebc62d9fd48121a
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;
}