#pragma once #ifndef CODEGEN_DEBUG_PRINT # define CODEGEN_DEBUG_PRINT 0 #endif #if CODEGEN_DEBUG_PRINT # define DEBUG_PRINTF(...) printf(__VA_ARGS__) #else # define DEBUG_PRINTF(...) #endif