mirror of
https://github.com/majn/telegram-purple
synced 2025-08-31 05:55:07 +00:00
11 lines
252 B
C
11 lines
252 B
C
![]() |
#include <stdarg.h>
|
||
|
|
||
|
void hexdump (int *in_ptr, int *in_end);
|
||
|
|
||
|
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, ...);
|
||
|
|