Metropoli BBS
VIEWER: iand.c MODE: TEXT (ASCII)
/*Copyright (C) 1992, 1996 by Thomas Glen Smith.  All Rights Reserved.*/
/* iand APL2 V1.0.0 ****************************************************
* Returns an int 1 or 0 depending on the logical AND of left and rite. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int iand(left,rite)
int left,rite;
{

	return((left != 0) & (rite != 0));
}





[ RETURN TO DIRECTORY ]