diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/xtools/xtimleneq.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/xtools/xtimleneq.x')
-rw-r--r-- | pkg/xtools/xtimleneq.x | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pkg/xtools/xtimleneq.x b/pkg/xtools/xtimleneq.x new file mode 100644 index 00000000..ece51695 --- /dev/null +++ b/pkg/xtools/xtimleneq.x @@ -0,0 +1,22 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include <imhdr.h> + +# XT_IMLENEQ -- Determine if the lengths of the common image dimensions +# are equal. + +bool procedure xt_imleneq (im1, im2) + +pointer im1 # First IMIO pointer +pointer im2 # Second IMIO pointer + +int i, ndim + +begin + ndim = min (IM_NDIM (im1), IM_NDIM (im2)) + do i = 1, ndim { + if (IM_LEN (im1, i) != IM_LEN (im2, i)) + return (FALSE) + } + return (TRUE) +end |