Open danmar opened 1 month ago
Example code:
#define P( x, ...) printf( x __VA_OPT__(,) __VA_ARGS__) #define PF( x, ...) P( x __VA_OPT__(,) __VA_ARGS__) int main() { PF( "%s", "Hello" ); }
The output from simplecpp is:
int main ( ) { printf ( "%s" __VA_OPT__ ( , ) "Hello" ) ; }
Example code:
The output from simplecpp is: