URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass47-frag.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
#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')); }
Go to most recent revision | Compare with Previous | Blame | View Log