add up/down/route-up script for openvpn
[0tDNS.git] / include / log.h
blob154e6ec97b7462e7e509a0943c2f2499cf794f90
1 #ifndef ZTDNS_LOG_H
2 #define ZTDNS_LOG_H
4 #include <stdio.h>
6 /* These functions will change later - it's just a "mock", so that every1 can
7 * already write code with ztdns_info() :)
8 * Use like ztdns_info("something wrong happened! %s", errorstring);
9 */
10 #define ztdns_debug(printfargs...) printf(printfargs)
11 #define ztdns_info(printfargs...) printf(printfargs)
12 #define ztdns_warn(printfargs...) printf(printfargs)
13 #define ztdns_error(printfargs...) printf(printfargs)
15 #endif /* ZTDNS_LOG_H */