Lines Matching defs:to_file
295 FILE *to_file;
307 to_file = fopen(sep + 1, "rb");
308 if (!to_file) {
318 fseek(to_file, 0, SEEK_END);
319 unsaved->Length = ftell(to_file);
320 fseek(to_file, 0, SEEK_SET);
325 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
327 (feof(to_file) ? "EOF" : "error"), sep + 1);
328 fclose(to_file);
339 fclose(to_file);