libtime++: Date and time calculation

◆ time_copy()

subroutine time_copy ( integer, dimension(7)  date1,
integer, dimension(7)  date2 
)

Definition at line 31 of file time_copy.f.

31 c
32 c copy: date1 --> date2
33 c
34 c input:
35 c date1: any time record
36 c output:
37 c date2: copy of date1
38 c
39 c last change: V2.00 (05/08/2000)
40 c
41  integer date1(7), date2(7)
42 cE
43  integer i
44 c
45  do i=1,7
46  date2(i)=date1(i)
47  enddo
48  return