blob: 9385f2d11f9e72598c737fa2b1f956ce0d827af3 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
subroutine concat (buf1, buf2, outstr)
integer buf1(100), buf2(100), outstr(100)
integer i
i = 1
call stcopy (buf1, 1, outstr, i)
call scopy (buf2, 1, outstr, i)
return
end
|