summaryrefslogtreecommitdiff
path: root/un-dump.c
blob: 426feaed2fdb39309f9c8caa44d60d57c770fa5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>

int main(void)
{
	int off, x, i;

	off = 0;

	for (;;) {
		printf("%06x:", off);
		off += 16;

		for (i = 0; i < 16; i++) {
			x = getchar();
			x |= getchar() << 8;
			printf(" %04x", x);
		}
		printf("\n");

		if (feof(stdin))
			exit(0);
	}
}