-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbytes.c
52 lines (43 loc) · 1.12 KB
/
dbytes.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Utility similar to default xxd, without vim.
Copyright (c) 2022-2023 bellrise */
#include <string.h>
#include <stdio.h>
#include <errno.h>
int main(int argc, char **argv)
{
unsigned char buf[16] = {0};
size_t bytes_read;
size_t line;
FILE *f;
/* RSD 3/2: required argument --help */
if (argc > 1 && !strcmp(argv[1], "--help")) {
puts("usage: dbytes [file]");
return EINVAL;
}
if (argc < 2) {
f = stdin;
} else {
if (!(f = fopen(argv[1], "r"))) {
printf("No such file or directory: %s\n", argv[1]);
return ENOENT;
}
}
/* Each line in dbytes represents 16 bytes. To not load the whole
file into memory at once, which could be problematic we only
fread 16 bytes at a time. */
line = 0;
while ((bytes_read = fread(buf, 1, 16, f))) {
printf("%08zx : ", (line++) * 16);
for (size_t i = 0; i < 16; i++) {
i >= bytes_read ? printf(" ") : printf("%02hhx", buf[i]);
if (i % 2 != 0)
fputc(' ', stdout);
}
printf(": ");
for (size_t i = 0; i < bytes_read; i++)
fputc(buf[i] >= 0x20 && buf[i] <= 0x7e ? buf[i] : '.', stdout);
fputc('\n', stdout);
}
if (argc > 1)
fclose(f);
}