tlog.h - ploot - simple plotting tools | |
git clone git://bitreich.org/ploot git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
tlog.h (319B) | |
--- | |
1 #ifndef LOG_H | |
2 #define LOG_H | |
3 | |
4 #include <stdarg.h> | |
5 | |
6 /**/ | |
7 extern int log_level; | |
8 void vlogf (int, char const *, cha… | |
9 void die (int, char const *, ...); | |
10 void error (char const *, ...); | |
11 void warn (char const *, ...); | |
12 void info (char const *, ...); | |
13 void debug (char const *, ...); | |
14 | |
15 #endif |