110496Sdlw /* 2*22907Skre * Copyright (c) 1980 Regents of the University of California. 3*22907Skre * All rights reserved. The Berkeley software License Agreement 4*22907Skre * specifies the terms and conditions for redistribution. 5*22907Skre * 6*22907Skre * @(#)hl_lt.c 5.1 06/07/85 710496Sdlw */ 810496Sdlw 910496Sdlw short hl_lt(a,b,la,lb) 1010496Sdlw char *a, *b; 1110496Sdlw long int la, lb; 1210496Sdlw { 1310496Sdlw return(s_cmp(a,b,la,lb) < 0); 1410496Sdlw } 15