blob: f41c8e11fb90abf45a3dde00b57f0cbe1fbd0496 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <imhdr.h>
include <imio.h>
# IM_PMLNE3 -- Pixel mask line not empty.
bool procedure im_pmlne3 (im, lineno, bandno)
pointer im #I image descriptor
int lineno #I line number
int bandno #I band number
long v[IM_MAXDIM]
bool pm_linenotempty()
begin
call amovkl (1, v, IM_MAXDIM)
v[2] = lineno
v[3] = bandno
return (pm_linenotempty (IM_PL(im), v))
end
|