home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sharew / f_2_c / libf77 / hl_le.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  144 b   |  11 lines

  1. #include "f2c.h"
  2.  
  3. extern integer s_cmp();
  4.  
  5. shortint hl_le(a,b,la,lb)
  6. char *a, *b;
  7. long int la, lb;
  8. {
  9. return(s_cmp(a,b,la,lb) <= 0);
  10. }
  11.