home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
utilities
/
print
/
pspager.lha
/
psp
/
include
/
bool.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-04-05
|
463 b
|
18 lines
#ifndef _BOOL_H
#define _BOOL_H
/*
** $VER: bool.h 1.0 (7.3.94)
**
** Boolean type and constants for the C and C++ programming languages.
**
** (C) Copyright 1994 Rainer Koppler
*/
#ifndef FALSE
#define FALSE 0
#define TRUE 1
typedef int bool;
#endif
#endif /*_BOOL_H*/