Lines Matching refs:fn
89 * defopen(fn)
90 * char *fn
92 * If 'fn' is non-null; it is a full pathname of a file
94 * If 'fn' is null the defopen file is closed.
102 defopen(char *fn)
106 return (defopen_common(fn, thr_data));
112 * defopen_r(const char *fn)
114 * 'fn' is a full pathname of a file which becomes the one read
129 defopen_r(const char *fn)
134 if (defopen_common(fn, thr_data) < 0) {
144 defopen_common(const char *fn, struct thr_data *thr_data)
154 if (fn == NULL)
157 if ((thr_data->fp = fopen(fn, "rF")) == NULL)