taglinefilesource code
outf70drivers/sound/hex2hex.hFILE *inf, *outf;
outf81drivers/sound/hex2hex.hif ((outf=fopen(target, "w"))==NULL)
outf92drivers/sound/hex2hex.hfclose(outf);
outf97drivers/sound/hex2hex.hfprintf(outf, "/*\n *\t Computer generated file. Do not edit.\n */\n");
outf98drivers/sound/hex2hex.hfprintf(outf, "static int %s_len = %d;\n", varline, l);
outf99drivers/sound/hex2hex.hfprintf(outf, "static unsigned char %s[] = {\n", varline);
outf103drivers/sound/hex2hex.hif (i) fprintf(outf, ",");
outf104drivers/sound/hex2hex.hif (i && !(i % 16)) fprintf(outf, "\n");
outf105drivers/sound/hex2hex.hfprintf(outf, "0x%02x", buf[i]);
outf108drivers/sound/hex2hex.hfprintf(outf, "\n};\n\n");
outf110drivers/sound/hex2hex.hfclose(outf);