blob: 629b4b919a21a25d43f0104ec63077396099fa9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
integer function addset (c, str, j, maxsiz)
integer j, maxsiz
integer c, str (maxsiz)
if (.not.(j .gt. maxsiz))goto 23000
addset = 0
goto 23001
23000 continue
str(j) = c
j = j + 1
addset = 1
23001 continue
return
end
|