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 / db1 / bool.h next >
C/C++ Source or Header  |  1997-09-03  |  757b  |  35 lines

  1. #ifndef BOOL_H
  2. #define BOOL_H
  3.  
  4. #ifndef FALSE
  5. #define FALSE 0
  6. #endif
  7.  
  8. #ifndef TRUE
  9. #define TRUE (!FALSE)
  10. #endif
  11. /*@-cppnames@*/
  12. typedef int bool;
  13. /*@=cppnames@*/
  14. /*
  15. ** bool_initMod has no real effect
  16. ** Declared with modifies internalState, so no noeffect errors are 
  17. ** reported when it is called.)
  18. */
  19.  
  20. extern /*@unused@*/ void bool_initMod (void) /*@modifies internalState@*/ ;
  21. /*@-mustmod@*/
  22. # define bool_initMod()
  23. /*@=mustmod@*/
  24.  
  25. extern /*@unused@*/ /*@observer@*/ char *bool_unparse (bool) /*@*/ ;
  26. # define bool_unparse(b) ((b) ? "true" : "false" )
  27.  
  28. extern /*@unused@*/ bool bool_not (bool) /*@*/ ;
  29. # define bool_not(b) ((b) ? FALSE : TRUE)
  30.  
  31. extern /*@unused@*/ bool bool_equal (bool, bool) /*@*/ ;
  32. # define bool_equal(a,b) ((a) ? (b) : !(b))
  33.  
  34. # endif
  35.