libcw/dns_sd/rpt.h
2020-03-04 14:25:59 -05:00

11 lines
358 B
C

#ifndef rpt_h
#define rpt_h
typedef void (*printCallback_t)( const char* text );
void vrpt( printCallback_t printCbFunc, const char* fmt, va_list vl );
void rpt( printCallback_t printCbFunc, const char* fmt, ... );
void rptHex( printCallback_t printCbFunc, const void* buf, unsigned bufByteN, const char* label = nullptr, bool asciiFl=true );
#endif