xref: /original-bsd/usr.bin/f77/libF77/ef1asc_.c (revision 5d95f126)
1 /*-
2  * Copyright (c) 1980 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.proprietary.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)ef1asc_.c	5.2 (Berkeley) 04/12/91";
10 #endif /* not lint */
11 
12 /* EFL support routine to copy string b to string a */
13 
14 #define M	( (long) (sizeof(long) - 1) )
15 #define EVEN(x)	( ( (x)+ M) & (~M) )
16 
17 ef1asc_(a, la, b, lb)
18 int *a, *b;
19 long int *la, *lb;
20 {
21 s_copy( (char *)a, (char *)b, EVEN(*la), *lb );
22 }
23