[BACK]Return to log.h CVS log [TXT][DIR] Up to [local] / blind

Diff for /blind/log.h between version 1.3 and 1.4

version 1.3, 2022/03/18 09:20:46 version 1.4, 2022/03/18 19:55:19
Line 19 
Line 19 
   
 #include <stdarg.h>  #include <stdarg.h>
   
 void log_init(int, int);  void    log_initialize(int, int);
 void log_setv(int);  void    log_setverbose(int);
 int  log_getv(void);  int     log_getverbose(void);
 void log_send(const char *, va_list)  void    log_send(const char *, va_list)
         __attribute__((__format__ (printf, 1, 0)));          __attribute__((__format__ (printf, 1, 0)));
 void log_info(const char *, ...)  void    log_info(const char *, ...)
         __attribute__((__format__ (printf, 1, 2)));          __attribute__((__format__ (printf, 1, 2)));
 void log_debug(const char *, ...)  void    log_debug(const char *, ...)
           __attribute__((__format__ (printf, 1, 2)));
   __dead void log_fatal(const char *, ...)
         __attribute__((__format__ (printf, 1, 2)));          __attribute__((__format__ (printf, 1, 2)));
   
 #endif /* LOG_H */  #endif /* LOG_H */

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

https://cvs.kroczynski.net