blob: 1c8997b4fa93c185e50680055dfd1b4b7e5189a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include "fitsio.h"
procedure fstnul(ounit,colnum,inull,status)
# Table column NULl value definition
# Define the null value for an integer binary table column
int ounit # i output file pointer
int colnum # i column number
int inull # integer null value
int status # o error status
begin
call fttnul(ounit,colnum,inull,status)
end
|