date and time created 82/01/18 19:20:24 by linton
[unix-history] / usr / src / usr.bin / pascal / libpc / RELTLE.c
CommitLineData
0a04fb58
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
492cc5d3 3static char sccsid[] = "@(#)RELTLE.c 1.2 %G%";
0a04fb58
KM
4
5#include "h00vars.h"
6
492cc5d3 7bool
0a04fb58
KM
8RELTLE(bytecnt, left, right)
9
492cc5d3 10 long bytecnt;
0a04fb58
KM
11 register long *left;
12 register long *right;
13{
14 register int longcnt;
15
16 longcnt = bytecnt >> 2;
17 do {
18 if ((*left++ & ~*right++) != 0)
19 return FALSE;
20 } while (--longcnt);
21 return TRUE;
22}