fire/bool.h

17 lines
300 B
C
Raw Permalink Normal View History

2019-12-12 15:46:24 -08:00
//
// 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
2019-12-12 18:18:56 -08:00
typedef char bool;
2019-12-12 15:46:24 -08:00
#endif