#ifndef	_FLIB_H
#define	_FLIB_H

typedef	struct	_ffplst_t
{	struct	_ffplst_t	*next;
	struct	_ffplst_t	*prev;
	FILE				*fp;
	int					md;
	int					drv;
	char				fn[256];
} FFPLST_T;

FILE	*FM_fopen(CONST char *fn, CONST char *md);
int		FM_fclose( FILE *fp );
void	FM_all_fclose(void);

#endif
