Files
prdgmshift-usbliter8/log.h
T
Paradigm Shift afe8b5c899 Initial commit
2026-06-18 14:22:10 +02:00

21 lines
279 B
C

#pragma once
#define DEBUG_ENABLED (0)
#include <stdio.h>
#define INFO(fmt, ...) \
printf(fmt "\n", ##__VA_ARGS__)
#if DEBUG_ENABLED
#define DEBUG(fmt, ...) \
printf("%s(): " fmt "\n", __func__, ##__VA_ARGS__)
#else
#define DEBUG(fmt, ...) \
(void)0
#endif