BFLibC 0.1
C Library
Loading...
Searching...
No Matches
log.h
Go to the documentation of this file.
1
6#ifndef LOG_H
7#define LOG_H
8
9#include <stdio.h>
10
11#ifdef DEBUG
12#define BFDLog(...) printf("[%s:%d]: ", __FILE__, __LINE__); printf(__VA_ARGS__); printf("\n")
13#else
14#define BFDLog(...)
15#endif // DEBUG
16
17#endif // LOG_H
18