/* Copyright (C) 1994 by Thomas Glen Smith. All Rights Reserved. */
/* iandp 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"
void iandp(left,rite,ret)
int *left,*rite,*ret;
{
*ret =((*left != 0) & (*rite != 0));
}