aboutsummaryrefslogtreecommitdiff
path: root/src/installer/bin2c.c
blob: 6c81fe6ff9a6d76df7679b98b8fdd8378c174757 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* BIN2C Converts binary data to be included in C source codes */


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>


static void usage(void)
{
	fprintf(stderr, "BIN2C Binary to C converter\n");
	fprintf(stderr, "usage: BIN2C <binfile> <cfile> <varname>\n");
	exit(0);
}


int main(int argc, char **argv)
{
	FILE* binfile;
	FILE* cfile;
	struct stat statbuf;
	long len;
	int cntr;
	unsigned char inbyte;
	char varname[80], cfilename[80];

	if (argc == 1)
		usage();

	if (! (binfile = fopen(argv[1], "rb"))) {
		perror("fopen");
		exit(1);
	}

	stat(argv[1], &statbuf);
	len = statbuf.st_size;

	if (argc > 2)
		strcpy(cfilename, argv[2]);
	else
		strcpy(cfilename,"bin2c.c");
	cfile = fopen(cfilename, "wt");

	cntr = 0;

	if (argc > 3)
		strcpy(varname, argv[3]);
	else
		strcpy(varname, "varname");

	fprintf(cfile, "unsigned char %s[%ld] = {\n", varname, len);

	fread(&inbyte, 1, 1, binfile);
	while (1) {
		fprintf(cfile, "0X%02X", inbyte);

		fread(&inbyte, 1, 1, binfile);
		if (feof(binfile)) 
			break;
		fprintf(cfile, ",");
		if (++cntr > 30) {
			fprintf(cfile, "\n");
			cntr = 0;
		}
	}

	fprintf(cfile, "};\n");
	fclose(binfile);
	fclose(cfile);
	return 0;
}