11688Smckusick /* Copyright (c) 1979 Regents of the University of California */
21688Smckusick 
3*3021Smckusic static char sccsid[] = "@(#)RELSLE.c 1.2 03/07/81";
41688Smckusick 
51688Smckusick #include "h00vars.h"
61688Smckusick 
7*3021Smckusic bool
8*3021Smckusic RELSLE(siz, str1, str2)
91688Smckusick 
10*3021Smckusic 	long		siz;
111688Smckusick 	register char	*str1;
121688Smckusick 	register char	*str2;
131688Smckusick {
14*3021Smckusic 	register int size = siz;
15*3021Smckusic 
161688Smckusick 	while (*str1++ == *str2++ && --size)
171688Smckusick 		/* void */;
181688Smckusick 	if ((size == 0) || (*--str1 <= *--str2))
191688Smckusick 		return TRUE;
201688Smckusick 	return FALSE;
211688Smckusick }
22