#include "defs.h"

Prototype WBench(BYTE flag);
Prototype ComLineInt(BYTE flag);
Prototype NoFormat(BYTE flag);
Prototype forFDir(BYTE flag);
Prototype Check(BYTE flag);

/* Les options. */

WBench(flag)
BYTE flag;
{
	CLI=!flag;
/*	printf("in WBench, CLI set to %d\n",!flag);*/
}

ComLineInt(flag)
BYTE flag;
{
	CLI=flag;
/*	printf("in ComLineInt, CLI set to %d\n",flag);*/
}

NoFormat(flag)
BYTE flag;
{
	VarAdr->Format=!flag;
/*	printf("in NoFormat, Format set to %d\n",VarAdr->Format);*/
}

forFDir(flag)
BYTE flag;
{
	FLnog=flag;
/*	 printf("in forFDir, FLnog set to %d\n",flag);*/
}

Check(flag)
BYTE flag;
{
	CHECK=flag;
}