/////////////////////////////////////////////////////////////////// // Level one of information // Turning this on, produces the essential output /////////////////////////////////////////////////////////////////// # ifdef TURN_ON_PRINT1 # define PRINT1(args) printf args # else # define PRINT1(args) # endif /////////////////////////////////////////////////////////////////// // Level two of information // Turning this on, produces more detailed output /////////////////////////////////////////////////////////////////// # ifdef TURN_ON_PRINT2 # define PRINT2(args) printf args # else # define PRINT2(args) # endif