home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / CNEWS016.ZIP / SETS.ARC / SETSOURC.ARC / CMPBATYP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-03-09  |  481 b   |  17 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include "sets.h"
  4. /***************************************************************************/
  5.              boolean cmp_base_types(set *seta,set *setb)
  6. /***************************************************************************/
  7. {
  8.     if(seta->base_type == UNIVERSAL || setb->base_type == UNIVERSAL)
  9.         return TRUE;
  10.     else if(seta->base_type != setb->base_type)
  11.         return FALSE;
  12.     else
  13.         return TRUE;
  14.  
  15. }  /* end cmp_base_types */
  16.  
  17.