blob: 8d341d3c3052ca1fcf2f21ac5612ca23452ed6a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include "fitsio.h"
procedure fspclu(ounit,colnum,frow,felem,nelem,status)
# set elements of a table to be undefined
int ounit # i output file pointer
int colnum # i column number
int frow # i first row
int felem # i first element in row
int nelem # i number of elements
int status # o error status
begin
call ftpclu(ounit,colnum,frow,felem,nelem,status)
end
|