diff options
Diffstat (limited to 'sys/plio/tf/plreqi.x')
-rw-r--r-- | sys/plio/tf/plreqi.x | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sys/plio/tf/plreqi.x b/sys/plio/tf/plreqi.x new file mode 100644 index 00000000..0307efea --- /dev/null +++ b/sys/plio/tf/plreqi.x @@ -0,0 +1,27 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include <plset.h> + +# PLR_EQUAL -- Compare two range lists for equality. + +bool procedure plr_equali (r1, r2) + +int r1[3,ARB] #I range list 1 +int r2[3,ARB] #I range list 2 + +int i +int len1, len2 + +begin + len1 = RL_LEN(r1) + len2 = RL_LEN(r2) + + if (len1 != len2) + return (false) + + do i = RL_FIRST, len1 + if (r1[1,i] != r2[1,i] || r1[2,i] != r2[2,i] || r1[3,i] != r2[3,i]) + return (false) + + return (true) +end |