summaryrefslogtreecommitdiff
path: root/libmudflap/testsuite/libmudflap.c/pass47-frag.c
blob: 9e4ac50ef3fed3783c906e6371dbb069da67be19 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdlib.h>
#include <ctype.h>

int main ()
{
  char* buf = "hello"; 
  return ! ((toupper (buf[0]) == 'H' && toupper ('z') == 'Z' &&
             tolower (buf[4]) == 'o' && tolower ('X') == 'x' &&
             isdigit (buf[3])) == 0 && isalnum ('4'));
}