"Fossies" - the Fresh Open Source Software Archive

Member "xc/xtypes.h" (10 Feb 1995, 899 Bytes) of package /linux/privat/old/laspack.tgz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /****************************************************************************/
    2 /*                                 xtypes.h                                 */
    3 /****************************************************************************/
    4 /*                                                                          */
    5 /* eXtension of standard TYPES.h                                            */
    6 /*                                                                          */
    7 /* Copyright (C) 1992-1994 Tomas Skalicky. All rights reserved.             */
    8 /*                                                                          */
    9 /****************************************************************************/
   10 
   11 #ifndef XTYPES_H
   12 #define XTYPES_H
   13 
   14 #ifndef BOOLEAN
   15 #define BOOLEAN
   16 
   17 typedef enum {
   18     False = 0,
   19     True  = 1
   20 } Boolean; /* boolean type */
   21 
   22 #endif /* BOOLEAN */
   23 
   24 #endif /* XTYPES_H */