Lines Matching refs:fname
211 * int sort_file(fname)
227 sort_file(char *fname)
234 if ((fd = open(fname, O_RDONLY)) == -1) {
236 fname, strerror(errno));
256 "Split the file into smaller files.", fname);
359 char *listcopy, *fname;
372 fname = strtok(listcopy, " \t,");
373 while (ret == 0 && fname != NULL) {
374 if ((ret = sort_file(fname)) == 0)
375 fname = strtok(NULL, " \t,");