Lines Matching defs:file
111 printf(" -a RW sorted by pid & file types\n");
112 printf(" -f RW sorted by file types\n");
145 printf("\tError: Log file is not specified.\n");
210 static void do_parse(FILE *file)
216 while (fgets(line, sizeof(line), file) != NULL) {
305 FILE *file;
310 file = fopen(argv[opt], "r");
311 if (!file) {
312 perror("open log file");
318 do_parse(file);
322 fclose(file);