home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / gopher+1.2b4 / object / boolean.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-11  |  1.1 KB  |  45 lines

  1. /********************************************************************
  2.  * lindner
  3.  * 3.1.1.1
  4.  * 1993/02/11 18:03:05
  5.  * /home/mudhoney/GopherSrc/CVS/gopher+/object/boolean.h,v
  6.  * $Status: $
  7.  *
  8.  * Paul Lindner, University of Minnesota CIS.
  9.  *
  10.  * Copyright 1991, 1992 by the Regents of the University of Minnesota
  11.  * see the file "Copyright" in the distribution for conditions of use.
  12.  *********************************************************************
  13.  * MODULE: boolean.h
  14.  * Header file that defines a boolean type.
  15.  *********************************************************************
  16.  * Revision History:
  17.  * boolean.h,v
  18.  * Revision 3.1.1.1  1993/02/11  18:03:05  lindner
  19.  * Gopher+1.2beta release
  20.  *
  21.  * Revision 1.1  1992/12/10  23:27:52  lindner
  22.  * gopher 1.1 release
  23.  *
  24.  *
  25.  *********************************************************************/
  26.  
  27.  
  28. /*
  29.  * Simple boolean type
  30.  */
  31.  
  32. #ifndef BOOLEAN_H
  33. #define BOOLEAN_H
  34.  
  35. #undef boolean  /** Just in case it's defined **/
  36. typedef int boolean;
  37. typedef int BOOLEAN;
  38.  
  39. #if !defined(TRUE) && !defined(FALSE)
  40. #define TRUE (1)
  41. #define FALSE (0)
  42. #endif
  43.  
  44. #endif /* BOOLEAN_H */
  45.