put display save area back into formal routine structure
[unix-history] / usr / src / usr.bin / pascal / libpc / RELTGE.c
CommitLineData
21c7d3cb
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
492cc5d3 3static char sccsid[] = "@(#)RELTGE.c 1.2 %G%";
21c7d3cb
KM
4
5#include "h00vars.h"
6
492cc5d3 7bool
21c7d3cb
KM
8RELTGE(bytecnt, left, right)
9
492cc5d3 10 long bytecnt;
21c7d3cb
KM
11 register long *left;
12 register long *right;
13{
14 register int longcnt;
15
16 longcnt = bytecnt >> 2;
17 do {
18 if ((*right++ & ~*left++) != 0)
19 return FALSE;
20 } while (--longcnt);
21 return TRUE;
22}