1 /* 2 * Copyright 2020, Shubham Bhagat, shubhambhagat111@yahoo.com 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 #ifndef _DEBUG_H_ 6 #define _DEBUG_H_ 7 8 #define TRACE_XFS 9 #ifdef TRACE_XFS 10 #define TRACE(x...) dprintf("\n\33[34mxfs:\33[0m " x) 11 #else 12 #define TRACE(x...) ; 13 #endif 14 #define ERROR(x...) dprintf("\n\33[34mxfs:\33[0m " x) 15 16 #endif