mirror of
https://github.com/kiedtl/fire.git
synced 2024-11-16 13:06:37 +00:00
17 lines
299 B
C
17 lines
299 B
C
|
//
|
||
|
// bool.h: defined the boolean type.
|
||
|
// this file is part of the LPTSTR common C header collection, and
|
||
|
// is licensed under the MIT license.
|
||
|
// (c) Kied Llaentenn and LPTSTR contributors.
|
||
|
//
|
||
|
|
||
|
#ifndef BOOL_INCLUDED
|
||
|
#define BOOL_INCLUDED
|
||
|
|
||
|
#define TRUE 1
|
||
|
#define FALSE 0
|
||
|
|
||
|
typedef char bool
|
||
|
|
||
|
#endif
|