summary refs log tree commit diff
path: root/.bin/xx.c
blob: d2d86574dabf90e3b8653d65d4f6184489d709fc (plain) (blame)
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
#if 0
exec cc -Weverything -o ~/.bin/xx $0
#endif

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char **argv)
{
    char *path = NULL;

    if (argc > 1)
        path = argv[1];

    FILE *file = path ? fopen(path, "r") : stdin;
    if (!file) {
        perror(path);
        return EXIT_FAILURE;
    }

    uint8_t buf[16];
    for (;;) {
        size_t n = fread(buf, 1, sizeof(buf), file);
        for (size_t i = 0; i < n; ++i)
            printf("%02x ", buf[i]);
        printf("\n");
        if (n < sizeof(buf)) break;
    }
    if (ferror(file)) {
        perror(path);
        return EXIT_FAILURE;
    }

    return EXIT_SUCCESS;
}