home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <stdarg.h>
- #include "sets.h"
- /***************************************************************************/
- boolean cmp_base_types(set *seta,set *setb)
- /***************************************************************************/
- {
- if(seta->base_type == UNIVERSAL || setb->base_type == UNIVERSAL)
- return TRUE;
- else if(seta->base_type != setb->base_type)
- return FALSE;
- else
- return TRUE;
-
- } /* end cmp_base_types */
-
-