mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +01:00
a84f174425
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29033 a95241bf-73f2-0310-859d-f6bbb57e9c96
11 lines
263 B
C
11 lines
263 B
C
#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'));
|
|
}
|