home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / forum7.lzh / RICO / C / LIBSOURCE / ARGPROC / boolean.h < prev    next >
Text File  |  2009-11-06  |  328b  |  11 lines

  1. /*--------------------------------------------------------------------------
  2.  Local definitions; peoples' preferences for these are hard to predict...
  3. --------------------------------------------------------------------------*/
  4.  
  5. typedef short boolean;
  6.  
  7. #ifndef TRUE
  8. #define TRUE    ((boolean) 1)
  9. #define FALSE    ((boolean) 0)
  10. #endif
  11.