You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
475 B
19 lines
475 B
|
|
#define FOO(bar) create_a_really_long_identifier name(some_function( \
|
|
bar1 + bar2), bar3, \
|
|
bar4);
|
|
|
|
#define multilinemacro do { (x+5); } while (0); \
|
|
printf("a multilinemacro"); \
|
|
printf("a multilinemacro2");
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int a, b;
|
|
a = 1; /* stupid comment \
|
|
* b = 2; */
|
|
|
|
return(a+b);
|
|
}
|
|
|