home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lclint.zip / lclint-2_3h-os2-bin.zip / test / tests2.2 / enumbool.c < prev    next >
Text File  |  1997-09-03  |  143b  |  14 lines

  1. typedef enum { false = 0, true } bool;
  2.  
  3. bool f (bool b)
  4. {
  5.   if (b)
  6.     {
  7.       return ( 3 > 4);
  8.     }
  9.   else
  10.     {
  11.       return false;
  12.     }
  13. }
  14.