Home | History | Annotate | Download | only in src

Lines Matching defs:file

4  * This file is part of PowerTOP
6 * This program file is free software; you can redistribute it and/or modify it
16 * along with this program in a file named COPYING; if not, write to the
41 FILE *file;
52 file = fopen(filename, "w");
53 if (!file)
55 fprintf(file, "min_power\n");
56 fclose(file);
67 FILE *file;
84 file = fopen(filename, "r");
85 if (!file)
88 if (fgets(line, 1023,file)==NULL) {
89 fclose(file);
95 fclose(file);