-
Notifications
You must be signed in to change notification settings - Fork 13
/
header.f
executable file
·36 lines (33 loc) · 1.03 KB
/
header.f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
! This file is part of stda.
!
! Copyright (C) 2013-2019 Stefan Grimme
!
! stda is free software: you can redistribute it and/or modify it under
! the terms of the GNU Lesser General Public License as published by
! the Free Software Foundation, either version 3 of the License, or
! (at your option) any later version.
!
! stda is distributed in the hope that it will be useful,
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! GNU Lesser General Public License for more details.
!
! You should have received a copy of the GNU Lesser General Public License
! along with stda. If not, see <https://www.gnu.org/licenses/>.
!
subroutine header(aarg,iarg)
IMPLICIT REAL*8(A-H,O-Z)
character*(*) aarg
write(*,110)
if(iarg.ne.0) then
write(*,120)aarg,iarg
else
write(*,121)aarg
endif
write(*,110)
110 format(70('='))
130 format(/)
120 format(20x,a,5x,i4)
121 format(20x,a)
return
end