mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
09c656ca68
Obtained from: netlib.att.com
14 lines
360 B
C
14 lines
360 B
C
/* EFL support routine to compare two character strings */
|
|
|
|
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
extern integer s_cmp();
|
|
integer ef1cmc_(a, la, b, lb) ftnint *a, *b; ftnlen *la, *lb;
|
|
#else
|
|
extern integer s_cmp(char*,char*,ftnlen,ftnlen);
|
|
integer ef1cmc_(ftnint *a, ftnlen *la, ftnint *b, ftnlen *lb)
|
|
#endif
|
|
{
|
|
return( s_cmp( (char *)a, (char *)b, *la, *lb) );
|
|
}
|