4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
21 * All rights reserved.
23 * The Original Code is: all of this file.
25 * Contributor(s): none yet.
27 * ***** END GPL LICENSE BLOCK *****
34 int main(int argc, char**argv) {
42 printf ("Usage: datatoc <data_file>\n");
46 fpin= fopen(argv[1], "rb");
48 printf ("Unable to open input <%s>\n", argv[1]);
52 fseek (fpin, 0L, SEEK_END);
54 fseek (fpin, 0L, SEEK_SET);
56 if (argv[1][0]=='.') argv[1]++;
58 sprintf(cname, "%s.c", argv[1]);
59 printf ("Making C file <%s>\n", cname);
61 for (i=0; i < (int)strlen(argv[1]); i++)
62 if (argv[1][i]=='.') argv[1][i]='_';
64 sprintf(sizest, "%d", (int)size);
65 printf ("Input filesize is %d, Output size should be %d\n", size, ((int)size)*4 + strlen("/* DataToC output of file <> */\n\n") + strlen("char datatoc_[]= {\"") + strlen ("\"};\n") + (strlen(argv[1])*3) + strlen(sizest) + strlen("int datatoc__size= ;\n") +(((int)(size/256)+1)*5));
67 fpout= fopen(cname, "w");
69 printf ("Unable to open output <%s>\n", cname);
73 fprintf (fpout, "/* DataToC output of file <%s> */\n\n",argv[1]);
74 fprintf (fpout, "int datatoc_%s_size= %s;\n", argv[1], sizest);
76 fprintf (fpout, "char datatoc_%s[]= {\"", argv[1]);
80 fprintf(fpout, "\" \\\n\"");
82 fprintf (fpout, "\\x%02x", getc(fpin));
85 fprintf (fpout, "\"};\n");
88 fprintf (fpout, "char datatoc_%s[]= {\n", argv[1]);
93 /* fprintf (fpout, "\\x%02x", getc(fpin)); */
94 fprintf (fpout, "%3d,", getc(fpin));
97 fprintf (fpout, "\n};\n\n");