date and time created 80/10/31 14:39:48 by mckusick
[unix-history] / usr / src / usr.bin / pascal / libpc / RELTLE.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)RELTLE.c 1.1 %G%";
#include "h00vars.h"
RELTLE(bytecnt, left, right)
int bytecnt;
register long *left;
register long *right;
{
register int longcnt;
longcnt = bytecnt >> 2;
do {
if ((*left++ & ~*right++) != 0)
return FALSE;
} while (--longcnt);
return TRUE;
}