Lines Matching defs:to_file
172 FILE *to_file;
184 to_file = fopen(sep + 1, "rb");
185 if (!to_file) {
195 fseek(to_file, 0, SEEK_END);
196 unsaved->Length = ftell(to_file);
197 fseek(to_file, 0, SEEK_SET);
201 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
203 (feof(to_file) ? "EOF" : "error"), sep + 1);
204 fclose(to_file);
215 fclose(to_file);