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 / boolenum.c < prev    next >
Text File  |  1997-09-03  |  177b  |  21 lines

  1. typedef enum {
  2.         FALSE = 0,
  3.         TRUE = 1
  4. } BOOLEAN;
  5.  
  6. int
  7. main ()
  8. {
  9.    BOOLEAN a = TRUE;
  10.  
  11.    if (a == TRUE) {
  12.        return 1; 
  13.    } else {
  14.        return 0;
  15.    }
  16. }
  17.  
  18.  
  19.  
  20.  
  21.