|
Last change
on this file since 603 was 2, checked in by bird, 23 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
|
|---|
| 6 | extern integer s_cmp();
|
|---|
| 7 | integer G77_ef1cmc_0 (a, la, b, lb) ftnint *a, *b; ftnlen *la, *lb;
|
|---|
| 8 | #else
|
|---|
| 9 | extern integer s_cmp(char*,char*,ftnlen,ftnlen);
|
|---|
| 10 | integer G77_ef1cmc_0 (ftnint *a, ftnlen *la, ftnint *b, ftnlen *lb)
|
|---|
| 11 | #endif
|
|---|
| 12 | {
|
|---|
| 13 | return( s_cmp( (char *)a, (char *)b, *la, *lb) );
|
|---|
| 14 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.