140865Sbostic /*- 2*62096Sbostic * Copyright (c) 1979, 1993 3*62096Sbostic * The Regents of the University of California. All rights reserved. 440865Sbostic * 540865Sbostic * %sccs.include.redist.c% 640865Sbostic */ 71691Smckusick 840865Sbostic #ifndef lint 9*62096Sbostic static char sccsid[] = "@(#)RELTGT.c 8.1 (Berkeley) 06/06/93"; 1040865Sbostic #endif /* not lint */ 111691Smckusick 121691Smckusick #include "h00vars.h" 131691Smckusick 143022Smckusic bool RELTGT(bytecnt,left,right)151691SmckusickRELTGT(bytecnt, left, right) 161691Smckusick 173022Smckusic long bytecnt; 181691Smckusick register long *left; 191691Smckusick register long *right; 201691Smckusick { 211691Smckusick register int longcnt; 221691Smckusick 231691Smckusick longcnt = bytecnt >> 2; 241691Smckusick do { 251691Smckusick if ((*right & ~*left) != 0) 261691Smckusick return FALSE; 271691Smckusick if ((*left++ & ~*right++) != 0) 281691Smckusick goto geq; 291691Smckusick } while (--longcnt); 301691Smckusick return FALSE; 311691Smckusick geq: 321691Smckusick while (--longcnt) { 331691Smckusick if ((*right++ & ~*left++) != 0) 341691Smckusick return FALSE; 351691Smckusick } 361691Smckusick return TRUE; 371691Smckusick } 38