blob: dd9264696f042fe25b754acda0aa71bb8d6b190d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include "fitsio.h"
procedure fsdrow(ounit,frow,nrows,status)
# delete rows in a table
int ounit # i output file pointer
int frow # first row to delete
int nrows # number of rows
int status # o error status
begin
call ftdrow(ounit,frow,nrows,status)
end
|