fluffy/hd.c

100 lines
2.7 KiB
C
Raw Normal View History

2011-07-18 09:07:14 -06:00
#include <stdio.h>
#include <stdint.h>
#include <string.h>
/* These glyphs are in most monospace fonts I tried in 2018 */
2013-01-29 21:53:17 -07:00
const char *charset[] = {
"·", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
2013-01-29 21:53:17 -07:00
"", "", "", "", "", "§", "", "", "", "", "", "", "", "", "", "",
" ", "!", "\"", "#", "$", "%", "&", "'", "(", ")", "*", "+", ",", "-", ".", "/",
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "?",
"@", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O",
"P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "[", "\\", "]", "^", "_",
"`", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
"p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "{", "|", "}", "~", "",
2013-01-29 21:53:17 -07:00
"Ç", "ü", "é", "â", "ä", "à", "å", "ç", "ê", "ë", "è", "ï", "î", "ì", "Ä", "Å",
"É", "æ", "Æ", "ô", "ö", "ò", "û", "ù", "ÿ", "Ö", "Ü", "¢", "£", "¥", "", "ƒ",
"á", "í", "ó", "ú", "ñ", "Ñ", "ª", "º", "¿", "", "¬", "½", "¼", "¡", "«", "»",
2013-01-29 21:53:17 -07:00
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
"α", "ß", "Γ", "π", "Σ", "σ", "µ", "τ", "Φ", "Θ", "Ω", "δ", "", "φ", "ε", "",
"", "±", "", "", "", "", "÷", "", "°", "", "", "", "", "²", "", "¤",
2011-07-18 09:07:14 -06:00
};
int
2017-07-28 10:44:35 -06:00
dump(FILE *f)
2011-07-18 09:07:14 -06:00
{
2013-01-29 21:53:17 -07:00
uint64_t p = 0;
uint8_t buf[32];
int offset = 0;
int skipping = 0;
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
while (!feof(f)) {
uint8_t *bytes = buf + offset;
size_t len;
int i;
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
offset = 16 - offset;
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
len = fread(bytes, 1, 16, f);
if (0 == len)
break;
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
if (p && (0 == memcmp(buf, buf + 16, 16))) {
if (!skipping) {
printf("*\n");
skipping = 1;
}
p += 16;
continue;
} else {
skipping = 0;
}
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
printf("%08lx ", (long unsigned int) p);
for (i = 0; i < 16; i += 1) {
if (i < len) {
printf("%02x ", bytes[i]);
} else {
printf(" ");
}
if (7 == i) {
printf(" ");
}
}
printf(" ");
2013-01-29 21:53:17 -07:00
for (i = 0; i < len; i += 1) {
printf("%s", charset[bytes[i]]);
}
if (-1 == printf("\n")) {
2013-01-29 21:53:17 -07:00
perror("printf");
return 1;
}
p += len;
}
printf("%08lx\n", (long unsigned int) p);
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
return 0;
2011-07-18 09:07:14 -06:00
}
int
main(int argc, char *argv[])
{
2013-01-29 21:53:17 -07:00
if (1 == argc) {
dump(stdin);
} else {
FILE *f = fopen(argv[1], "rb");
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
if (!f) {
perror("open");
return 1;
}
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
dump(f);
}
2011-07-18 09:07:14 -06:00
2013-01-29 21:53:17 -07:00
return 0;
2011-07-18 09:07:14 -06:00
}