mirror of
https://github.com/ksherlock/marignotti.git
synced 2024-10-31 13:07:41 +00:00
17 lines
341 B
C
17 lines
341 B
C
#ifndef __s16_debug_h__
|
|
#define __s16_debug_h__
|
|
|
|
void s16_debug_puts(const char *str);
|
|
void s16_debug_printf(const char *format, ...);
|
|
void s16_debug_dump(const void *data, unsigned size);
|
|
|
|
void s16_debug_tcp(unsigned ipid);
|
|
|
|
#ifdef __TCPIP__
|
|
void s16_debug_srbuff(const srBuff *sb);
|
|
void s16_debug_rrbuff(const rrBuff *rr);
|
|
|
|
#endif
|
|
|
|
#endif
|