2020-07-02 23:54:48 -04:00
|
|
|
#ifndef _PATTY_PRINT_H
|
|
|
|
#define _PATTY_PRINT_H
|
|
|
|
|
2020-07-17 22:57:23 -04:00
|
|
|
int patty_print_frame_header(FILE *fh,
|
|
|
|
const patty_ax25_frame *frame);
|
|
|
|
|
|
|
|
int patty_print_params(FILE *fh,
|
|
|
|
const patty_ax25_params *params);
|
2020-07-02 23:54:48 -04:00
|
|
|
|
2020-07-17 22:57:23 -04:00
|
|
|
int patty_print_hexdump(FILE *fh, void *data, size_t len);
|
2020-07-02 23:54:48 -04:00
|
|
|
|
|
|
|
#endif /* _PATTY_PRINT_H */
|