2014-06-15 03:22:39 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2014-06-09 14:22:06 +02:00
|
|
|
/**
|
|
|
|
* 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, ...);
|
2014-06-09 14:22:06 +02:00
|
|
|
|