source: trunk/src/gcc/libf2c/libF77/ef1cmc_.c@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 372 bytes
Line 
1/* EFL support routine to compare two character strings */
2
3#include "f2c.h"
4
5#ifdef KR_headers
6extern integer s_cmp();
7integer G77_ef1cmc_0 (a, la, b, lb) ftnint *a, *b; ftnlen *la, *lb;
8#else
9extern integer s_cmp(char*,char*,ftnlen,ftnlen);
10integer G77_ef1cmc_0 (ftnint *a, ftnlen *la, ftnint *b, ftnlen *lb)
11#endif
12{
13return( s_cmp( (char *)a, (char *)b, *la, *lb) );
14}
Note: See TracBrowser for help on using the repository browser.