/* Copyright (C) 1994 by Thomas Glen Smith. All Rights Reserved. */ /* norp APL2 V1.0.0 **************************************************** * Returns 1 or 0 depending on the logical NOR of left and rite. * ***********************************************************************/ #define INCLUDES 0 #include "includes.h" void norp(left,rite,ret) double *left,*rite; int *ret; { extern double fuzz; int ileft,irite; ileft = (!((*left >= -fuzz) & (*left <= fuzz))); irite = (!((*rite >= -fuzz) & (*rite <= fuzz))); *ret =(!(ileft | irite)); }