Lines Matching defs:fn
90 * defopen(fn)
91 * char *fn
93 * If 'fn' is non-null; it is a full pathname of a file
95 * If 'fn' is null the defopen file is closed.
103 defopen(char *fn)
107 return (defopen_common(fn, thr_data));
113 * defopen_r(const char *fn)
115 * 'fn' is a full pathname of a file which becomes the one read
130 defopen_r(const char *fn)
135 if (defopen_common(fn, thr_data) < 0) {
145 defopen_common(const char *fn, struct thr_data *thr_data)
155 if (fn == NULL)
158 if ((thr_data->fp = fopen(fn, "rF")) == NULL)