blob: e001f4fdd58db00882a65b11b6d7c309f5b5941f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
integer function clower(c)
integer c
integer k
if (.not.(c .ge. 65 .and. c .le. 90))goto 23000
k = 97 - 65
clower = c + k
goto 23001
23000 continue
clower = c
23001 continue
return
end
|