2021-08-12 23:06:58 -04:00
|
|
|
/* flook.h -- */
|
|
|
|
#ifndef _FLOOK_H_
|
|
|
|
#define _FLOOK_H_
|
2013-06-10 06:14:09 -04:00
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
#include "retcode.h" /* boolean */
|
2013-06-10 06:14:09 -04:00
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
#define rcfname pathname[ 0]
|
|
|
|
#define hlpfname pathname[ 1]
|
2013-06-12 02:27:09 -04:00
|
|
|
|
2013-06-10 06:14:09 -04:00
|
|
|
extern const char *pathname[] ;
|
|
|
|
|
|
|
|
|
|
|
|
boolean fexist( const char *fname) ;
|
2013-09-19 02:13:07 -04:00
|
|
|
char *flook( const char *fname, boolean hflag) ;
|
2013-06-10 06:14:09 -04:00
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
#endif
|
|
|
|
/* end of flook.h */
|