Wondering if TI compilers support macros with variable number of arguments. I know its not ANSI C..
I was trying to compile something like this (but with no luck):-
#define myPrint(mask, format, args...) (someFlags & (mask)) ? standardPrint(mask, format, args) : NULL)
Is this supported ? How do I refer to the variable arguments (as args or something else ?!). Is there a special compiler option I should be using ?!
Thanks,
Gunjan