mirror of
https://github.com/kiedtl/fire.git
synced 2024-11-15 20:46:38 +00:00
17 lines
300 B
C
17 lines
300 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
|