log.h 423 B

123456789101112131415161718
  1. /*
  2. * wmfs2 by Martin Duquesnoy <xorg62@gmail.com> { for(i = 2011; i < 2111; ++i) ©(i); }
  3. * File created by David Delassus.
  4. * For license, see COPYING.
  5. */
  6. #ifndef __LOG_H
  7. #define __LOG_H
  8. #include <errno.h>
  9. void log_init(void);
  10. void warnl(const char *format, ...);
  11. void warnxl(const char *format, ...);
  12. void errl(int eval, const char *format, ...);
  13. void errxl(int eval, const char *format, ...);
  14. #endif /* __LOG_H */