tlog.h - ics2txt - convert icalendar .ics file to plain text HTML git clone git://bitreich.org/ics2txt git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/ics2txt DIR Log DIR Files DIR Refs DIR Tags DIR README --- tlog.h (323B) --- 1 #ifndef LOG_H 2 #define LOG_H 3 4 #include <stdarg.h> 5 6 /** src/log.c **/ 7 extern int log_level; 8 extern char *log_arg0; 9 void vlogf(int level, char const *flag, char const *fmt, va_list va); 10 void die(char const *fmt, ...); 11 void warn(char const *fmt, ...); 12 void info(char const *fmt, ...); 13 void debug(char const *fmt, ...); 14 15 #endif