hl_ge.c 346 B

123456789101112131415161718
  1. #include "f2c.h"
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #ifdef KR_headers
  6. extern integer s_cmp();
  7. shortlogical hl_ge(a,b,la,lb) char *a, *b; ftnlen la, lb;
  8. #else
  9. extern integer s_cmp(char *, char *, ftnlen, ftnlen);
  10. shortlogical hl_ge(char *a, char *b, ftnlen la, ftnlen lb)
  11. #endif
  12. {
  13. return(s_cmp(a,b,la,lb) >= 0);
  14. }
  15. #ifdef __cplusplus
  16. }
  17. #endif