blob: 36ca2ac2c1e740c2a098f15bb7c2e112f42ddf80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
subroutine stcopy (in, i, out, j)
integer in (100), out (100)
integer i, j
integer k
k = i
23000 if (.not.(in (k) .ne. -2))goto 23002
out (j) = in (k)
j = j + 1
23001 k = k + 1
goto 23000
23002 continue
out(j) = -2
return
end
|