NAME set_equal - return TRUE if two sets contain the same members SYNOPSIS logical function set_equal (set1, set2) pointer set1, set2 DESCRIPTION 'Set_equal' determines if two sets contain the same members. The sets need not be of equal length. All set manipulation routines make use of dynamic storage, which must be initialized before use. See 'dsinit' for further information. Note that all set manipulation routines have long names. To avoid unique name conflicts with other routines, any Ratfor program using the set routines should include the following statement: include "=src=/lcl/lib/swtmlb.u/swtmlb_link.r.i" IMPLEMENTATION 'Set_equal' makes two calls on 'set_subset'. The function return is true if 'set1' is a subset of 'set2' and 'set2' is a subset of 'set1', false otherwise. CALLS set_subset SEE ALSO other set routines ('set_?*') (4)