telegram-purple/msglog.h

15 lines
343 B
C
Raw Permalink Normal View History

#include <stdarg.h>
/**
* Set a custom logging callback to use instead of regular printing
* to stdout
*/
2014-07-26 11:55:45 +02:00
void hexdump (int *in_ptr, int *in_end);
2014-10-03 14:23:15 +02:00
void debug(const char* format, ...);
void info(const char* format, ...);
void warning(const char* format, ...);
void failure(const char* format, ...);
void fatal(const char* format, ...);