ack/lang/fortran/lib/libF77/ef1asc_.c
1991-10-07 16:59:33 +00:00

16 lines
285 B
C

/* EFL support routine to copy string b to string a */
#include "f2c.h"
extern VOID s_copy();
#define M ( (long) (sizeof(long) - 1) )
#define EVEN(x) ( ( (x)+ M) & (~M) )
VOID ef1asc_(a, la, b, lb)
int *a, *b;
long int *la, *lb;
{
s_copy( (char *)a, (char *)b, EVEN(*la), *lb );
}