Lines Matching defs:file
4 * you may not use this file except in compliance with the License.
37 FILE *file = fopen(path, "w+");
38 if (file == NULL) {
43 size_t n = fwrite(msg, sizeof(char), len, file);
44 if (fclose(file)) {
56 FILE *file = fopen(path, "r");
57 if (file == NULL) {
61 size_t n = fread(buf, sizeof(char), len, file);
62 if (fclose(file)) {
85 printf("information: file removed fail\n");
90 printf("information: file removed fail\n");