I want to write a macro in C that accepts any number of parameters, not a specific number
example:
#define macro( X ) something_complicated( whateve
C99 way, also supported by VC++ compiler.
#define FOO(fmt, ...) printf(fmt, ##__VA_ARGS__)