xref: /csrg-svn/usr.bin/f77/libF77/l_le.c (revision 22920)
110507Sdlw /*
2*22920Skre  * Copyright (c) 1980 Regents of the University of California.
3*22920Skre  * All rights reserved.  The Berkeley software License Agreement
4*22920Skre  * specifies the terms and conditions for redistribution.
5*22920Skre  *
6*22920Skre  *	@(#)l_le.c	5.1	06/07/85
710507Sdlw  */
810507Sdlw 
910507Sdlw long int l_le(a,b,la,lb)
1010507Sdlw char *a, *b;
1110507Sdlw long int la, lb;
1210507Sdlw {
1310507Sdlw return(s_cmp(a,b,la,lb) <= 0);
1410507Sdlw }
15