#ifndef SUDOKU_DEBUG_H #define SUDOKU_DEBUG_H #include #define NAME_CELL(x,y) ("ABCDEFGHI"[(x)]), ("123456789"[(y)]) //#define DEBUG #ifdef DEBUG # define DEBUG_LOG(args...) printf(args) #else # define DEBUG_LOG(...) #endif #endif /* SUDOKU_DEBUG_H */