blob: fca8103c67f66dab98e4cfd34fcda1c9beec184a [file] [log] [blame]
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001#ifndef _DLOG_H
2#define _DLOG_H
3
4#if DEBUG
5void dlog(const char *fmt, ...);
6#else
7#define dlog(...)
8#endif
9
10void dlog_init(void (*pchar)(char));
11
Andrew Scull4f170f52018-07-19 12:58:20 +010012#endif /* _DLOG_H */