Can I do something like
#define a->b c
I tried that and the compiler complains "ISO C requires whitespace after the macro name"
What I want to accomplish with this is reuse of code. I want to do something like :
#ifdef DEBUG
#define a->b c
#endif
Any other ways of doing it?