I have a large code I want to go over and it has a lot of parts "macroed out":
#define DEBUG 0
#if DEBUG
...
#endif
The (...) is mostly debug printf's. Is there a way to remove all these code lines that eventually won't execute?
I have a large code I want to go over and it has a lot of parts "macroed out":
#define DEBUG 0
#if DEBUG
...
#endif
The (...) is mostly debug printf's. Is there a way to remove all these code lines that eventually won't execute?