You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
220 B
C

int main(int argc, char** argv)
{
switch (argc)
{
// If FOO or BAR is defined, treat it specially
#ifdef FOO
case FOO:
return 1;
#endif
#ifdef BAR
case BAR:
return 2;
#endif
default:
return 100;
}
}