Last active
March 29, 2019 20:00
-
-
Save valkheim/bc8bd63df213982ff1afc98a5b408c82 to your computer and use it in GitHub Desktop.
Dump itself
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
extern char __executable_start; | |
extern char __etext; | |
static void dump(const void* data, size_t size) | |
{ | |
char ascii[17]; | |
size_t i, j; | |
ascii[16] = '\0'; | |
for (i = 0; i < size; ++i) { | |
if (i % 16 == 0) | |
printf("%p: ", (unsigned char*)data+i); | |
printf("%02X ", ((unsigned char*)data)[i]); | |
if (((unsigned char*)data)[i] >= ' ' && ((unsigned char*)data)[i] <= '~') { | |
ascii[i % 16] = ((unsigned char*)data)[i]; | |
} else { | |
ascii[i % 16] = '.'; | |
} | |
if ((i+1) % 8 == 0 || i+1 == size) { | |
printf(" "); | |
if ((i+1) % 16 == 0) { | |
printf("| %s \n", ascii); | |
} else if (i+1 == size) { | |
ascii[(i+1) % 16] = '\0'; | |
if ((i+1) % 16 <= 8) { | |
printf(" "); | |
} | |
for (j = (i+1) % 16; j < 16; ++j) { | |
printf(" "); | |
} | |
printf("| %s \n", ascii); | |
} | |
} | |
} | |
} | |
void main(void) | |
{ | |
void *start = &__executable_start; | |
void *end = &__etext; | |
dump(start, end - start); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment