summaryrefslogtreecommitdiffstats
path: root/include/zx/hexdump.h
blob: 5b387962475e44e176a68a6daf0890a7ecd3ebd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _ZX81_HEXDUMP_H
#define _ZX81_HEXDUMP_H

#include <stdio.h>
#include <sys/types.h>

#define ZX81_HEXDUMP_STRIDE_LINE 16
#define ZX81_HEXDUMP_STRIDE_GROUP 2

ssize_t zx81_hexdump(int source_fd, FILE *stream);

#endif /* _ZX81_HEXDUMP_H */