xref: /openbsd-src/gnu/gcc/libmudflap/testsuite/libmudflap.c/pass47-frag.c (revision 404b540a9034ac75a6199ad1a32d1bbc7a0d4210)
1 #include <stdlib.h>
2 #include <ctype.h>
3 
main()4 int main ()
5 {
6   char* buf = "hello";
7   return ! ((toupper (buf[0]) == 'H' && toupper ('z') == 'Z' &&
8              tolower (buf[4]) == 'o' && tolower ('X') == 'x' &&
9              isdigit (buf[3])) == 0 && isalnum ('4'));
10 }
11