diff options
Diffstat (limited to 'sys/imio/impmlne3.x')
-rw-r--r-- | sys/imio/impmlne3.x | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/imio/impmlne3.x b/sys/imio/impmlne3.x new file mode 100644 index 00000000..f41c8e11 --- /dev/null +++ b/sys/imio/impmlne3.x @@ -0,0 +1,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 |