#ifndef DEBUG_H #define DEBUG_H #include #include #define DEBUG(...) do { \ if (getenv("APPIMAGE_CHECKRT_DEBUG")) \ printf("APPIMAGE_CHECKRT>> " __VA_ARGS__); \ } while (0) #endif // DEBUG_H