home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <stdarg.h>
- #include "sets.h"
- /***************************************************************************/
- boolean set_includes(set *left, set *right)
- /***************************************************************************/
- /* The right set is included in the left set if every member of right is
- a member of left. left >= right
- */
- {
- /* Getting very clever about this... */
- return set_included_in(right,left);
-
- } /* end set_includes */
-
-