110494Sdlw /* 2*22902Skre * Copyright (c) 1980 Regents of the University of California. 3*22902Skre * All rights reserved. The Berkeley software License Agreement 4*22902Skre * specifies the terms and conditions for redistribution. 5*22902Skre * 6*22902Skre * @(#)hl_gt.c 5.1 06/07/85 710494Sdlw */ 810494Sdlw 910494Sdlw short hl_gt(a,b,la,lb) 1010494Sdlw char *a, *b; 1110494Sdlw long int la, lb; 1210494Sdlw { 1310494Sdlw return(s_cmp(a,b,la,lb) > 0); 1410494Sdlw } 15