blob: 2da715ff83a56ff8900ca8d94a3295b6256f4d7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include "fitsio.h"
procedure fscpdt(iunit,ounit,status)
# copies the data from IUNIT to the CHDU of OUNIT.
int iunit # i input file pointer
int ounit # i output file pointer
int status # o error status
begin
call ftcpdt(iunit,ounit,status)
end
|