Skip to content

Instantly share code, notes, and snippets.

@albertz
Created January 2, 2012 16:29
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save albertz/1551304 to your computer and use it in GitHub Desktop.
Save albertz/1551304 to your computer and use it in GitHub Desktop.
bin2c
#include <stdio.h>
#include <assert.h>
int main(int argc, char** argv) {
assert(argc == 2);
char* fn = argv[1];
FILE* f = fopen(fn, "r");
printf("char a[] = {\n");
unsigned long n = 0;
while(!feof(f)) {
unsigned char c;
if(fread(&c, 1, 1, f) == 0) break;
printf("0x%.2X,", (int)c);
++n;
if(n % 10 == 0) printf("\n");
}
fclose(f);
printf("};\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment