I am using Visual Studio Code v1.14.1.
In my program, I got a lot's of printf or some debug function.
I knew that I can put something like
#define DEBUG_PRINT 1
#ifdef DEBUG_PRINT
printf(*****************);
#endif
But the problem is there got thousand of printf, I don't want manually add the preprocessor define. Do we got any method can automatically wrapped the target function around.