mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 23:57:54 +01:00
09c656ca68
Obtained from: netlib.att.com
15 lines
360 B
C
15 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) );
|
|
}
|