tlog.h - ploot - simple plotting tools
(HTM) git clone git://bitreich.org/ploot git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/ploot
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) 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 *, char const *, va_list);
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