/*
 *	File:					Exists().h
 *	Description:	Return TRUE or FALSE depending on a file exists
 *
 *	(C) 1993, Ketil Hunn
 *
 */

BOOL Exists(char *name)
{
	BPTR	fp;
	BOOL	exists=FALSE;

	if(fp=Open(name, MODE_OLDFILE))
		exists=TRUE;
	Close(fp);

	return exists;
}
