Home
       tlog.h - iomenu - interactive terminal-based selection menu
  HTML git clone git://bitreich.org/iomenu git://hg6vgqziawt5s4dj.onion/iomenu
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
       tlog.h (296B)
       ---
            1 #ifndef LOG_H
            2 #define LOG_H
            3 
            4 #include <stdarg.h>
            5 
            6 /** src/log.c **/
            7 char *arg0;
            8 void log_vprintf(int level, char const *flag, char const *fmt, va_list va);
            9 void die(char const *fmt, ...);
           10 void warn(char const *fmt, ...);
           11 void info(char const *fmt, ...);
           12 void debug(char const *fmt, ...);
           13 
           14 #endif