home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / gopher1.12 / object / boolean.h next >
Encoding:
C/C++ Source or Header  |  1992-12-30  |  1.1 KB  |  42 lines

  1. /********************************************************************
  2.  * $Author: lindner $
  3.  * $Revision: 1.1 $
  4.  * $Date: 1992/12/10 23:27:52 $
  5.  * $Source: /home/mudhoney/GopherSrc/release1.11/object/RCS/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.  * $Log: boolean.h,v $
  18.  * Revision 1.1  1992/12/10  23:27:52  lindner
  19.  * gopher 1.1 release
  20.  *
  21.  *
  22.  *********************************************************************/
  23.  
  24.  
  25. /*
  26.  * Simple boolean type
  27.  */
  28.  
  29. #ifndef BOOLEAN_H
  30. #define BOOLEAN_H
  31.  
  32. #undef boolean  /** Just in case it's defined **/
  33. typedef int boolean;
  34. typedef int BOOLEAN;
  35.  
  36. #if !defined(TRUE) && !defined(FALSE)
  37. #define TRUE (1)
  38. #define FALSE (0)
  39. #endif
  40.  
  41. #endif /* BOOLEAN_H */
  42.