| 12345678910111213141516171819 | #include "f2c.h"#ifdef __cplusplusextern "C" {#endif#ifdef KR_headersextern integer s_cmp();shortlogical hl_lt(a,b,la,lb) char *a, *b; ftnlen la, lb;#elseextern integer s_cmp(char *, char *, ftnlen, ftnlen);shortlogical hl_lt(char *a, char *b, ftnlen la, ftnlen lb)#endif{return(s_cmp(a,b,la,lb) < 0);}#ifdef __cplusplus}#endif
 |