mirror of
https://git.suyu.dev/suyu/AppImageKit-checkrt.git
synced 2025-12-21 21:26:06 +01:00
12 lines
227 B
C
12 lines
227 B
C
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#define DEBUG(...) do { \
|
|
if (getenv("APPIMAGE_CHECKRT_DEBUG")) \
|
|
printf("APPIMAGE_CHECKRT>> " __VA_ARGS__); \
|
|
} while (0)
|
|
|
|
#endif // DEBUG_H
|