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