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