Home | History | Annotate | Download | only in profile

Lines Matching defs:output_file

45 static FILE *output_file = NULL;
48 fwrite(&i, 4, 1, output_file);
65 fwrite(s, strlen(s), 1, output_file);
66 fwrite("\0\0\0\0", 4 - (strlen(s) % 4), 1, output_file);
132 output_file = fopen(filename, "w+b");
134 if (!output_file) {
136 output_file = fopen(filename, "w+b");
137 if (!output_file) {
146 fwrite("adcg*204MVLL", 12, 1, output_file);
148 fwrite("adcg*404MVLL", 12, 1, output_file);
187 if (!output_file) return;
190 fwrite("\0\0\0\1", 4, 1, output_file);
202 if (!output_file) return;
203 fwrite("\0\0\xa1\1", 4, 1, output_file);
217 if (!output_file) return;
218 fwrite("\0\0\0\0\0\0\0\0", 8, 1, output_file);
219 fclose(output_file);
220 output_file = NULL;