/* Wild Card Library */

#ifndef FALSE
#define FALSE	0
#define TRUE	-1
#endif

#ifndef NULL
#define NULL	0
#endif

typedef struct {
	char	dummy[22];
	short	time,date;
	int		size;
	char	fname[13];
	} DTA;

extern DTA	*search(char *path,int mode,char *fname);
extern DTA	*next(char *path,int mode,char *fname);
extern char	*getext(char *arg);
extern char	*getname(char *arg);
