Lines Matching defs:targetfile
121 void concat_files(const char *file1, const char *file2, const char *targetfile);
187 char targetfile[MAX_PATH_LEN];
188 strcpy(targetfile, "fsdata.c");
227 strncpy(targetfile, &argv[i][3], sizeof(targetfile) - 1);
228 targetfile[sizeof(targetfile) - 1] = 0;
229 printf("Writing to file \"%s\"\n", targetfile);
346 concat_files("fsdata.tmp", "fshdr.tmp", targetfile);
422 void concat_files(const char *file1, const char *file2, const char *targetfile)
425 fout = fopen(targetfile, "wb");
427 printf("Failed to open file \"%s\"\n", targetfile);