#ifndef all_h
#define all_h
#define error(a ...) printf("[Error] %s: ",__func__),printf(a)
#define warning(a ...) printf("[Warning] %s: ",__func__),printf(a)
#ifdef DEBUG
#define IMG4TOOL_VERSION_COMMIT_COUNT "Debug"
#define IMG4TOOL_VERSION_COMMIT_SHA "Build: " __DATE__ " " __TIME__
#define HAVE_LIBCOMPRESSION
#else
#define IMG4TOOL_NOLZFSE
#define IMG4TOOL_NOOPENSSL
#endif
#endif