Home | History | Annotate | Download | only in c-index-test

Lines Matching defs:to_file

178     FILE *to_file;
190 to_file = fopen(sep + 1, "rb");
191 if (!to_file) {
201 fseek(to_file, 0, SEEK_END);
202 unsaved->Length = ftell(to_file);
203 fseek(to_file, 0, SEEK_SET);
207 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
209 (feof(to_file) ? "EOF" : "error"), sep + 1);
210 fclose(to_file);
221 fclose(to_file);