I have prints available something like this
PrintMe(("abc %d",a));
Printme defined like this
#define Printme(_X_) printf _X_
But now i need to map it with some print which takes variable arguments something like
#define Printme(format , args ....) PrintVar(30,format,##args)
Printvar has single parentheses and Printme has double parentheses
How to map this