Lines Matching defs:file
9 * By using this file, you agree to the terms and conditions set forth bellow.
23 * appear in each source code file, this License Terms and Conditions.
56 FILE *file;
61 file = fopen(filename, "w");
62 if (file == NULL) {
63 fprintf(stderr, "failed to create config file `%s'\n",
75 fputc('\n', file);
76 fputs(arg, file);
79 fputc('\n', file);
81 fclose(file);