File: bin_to_c.c

package info (click to toggle)
spectemu 0.94a-23
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 1,320 kB
  • sloc: ansic: 15,421; asm: 5,160; sh: 1,533; cpp: 377; makefile: 162
file content (118 lines) | stat: -rw-r--r-- 2,712 bytes parent folder | download | duplicates (13)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* 
 * Copyright (C) 1996-1998 Szeredi Miklos
 * Email: mszeredi@inf.bme.hu
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version. See the file COPYING. 
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

#define FIELDS_PER_LINE 10
#define EXTENSION ".c"

static char *progname;

static void bin_to_c(FILE* ifp, FILE *ofp, char *name, 
		     char *iname, char *oname)
{
  int i;
  int c;
  int first;
  unsigned long ctr;

  fprintf(ofp, "/* %s */\n\n", oname);

  fprintf(ofp, 
"/*\n"
"   This file was generated by %s from binary image\n"
"   file `%s'\n"
" */\n\n", 
	  progname, iname);

  fprintf(ofp, "unsigned char %s[] = {", name);

  i = 0;
  first = 1;
  ctr = 0;
  while((c = getc(ifp)) != EOF) {
    ctr++;

    if(!first) fprintf(ofp, ", ");
    else first = 0;

    if(!i) fprintf(ofp, "\n  ");

    fprintf(ofp, "0x%02X", (int) ((unsigned char) c));
    
    i = (i + 1) % FIELDS_PER_LINE;
  }
  
  fprintf(ofp, "\n};\n\n");
  fprintf(ofp, "const unsigned long %s_size = %lu;\n\n", name, ctr);
  fprintf(ofp, "/* End of %s */\n", oname);
}


int main(int argc, char *argv[])
{
  char *inputfile, *outputfile, *outprefix;
  FILE *ifp, *ofp;

  progname = argv[0];

  if(argc != 3) {
    fprintf(stderr, "usage: %s inputfile output_prefix\n", progname);
    return 1;
  }

  inputfile = argv[1];
  outprefix = argv[2];

  outputfile = malloc(strlen(outprefix) + strlen(EXTENSION) + 1);
  if(outputfile == NULL) {
    fprintf(stderr, "Could not allocate memory\n");
    return 1;
  }
  
  strcpy(outputfile, outprefix);
  strcat(outputfile, EXTENSION);
  
  ifp = fopen(inputfile, "rb");
  if(ifp == NULL) {
    fprintf(stderr, "Could not open input file `%s': %s\n", 
	    inputfile, strerror(errno));
    return 1;
  }
  
  ofp = fopen(outputfile, "wt");
  if(ofp == NULL) {
    fprintf(stderr, "Could not open output file `%s': %s\n", 
	    outputfile, strerror(errno));
    return 1;
  }

  bin_to_c(ifp, ofp, outprefix, inputfile, outputfile);

  free(outputfile);
  
  fclose(ofp);
  fclose(ifp);

  return 0;
}