fire/bool.h

17 lines
300 B
C
Raw Normal View History

2019-12-12 23:46:24 +00: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-13 02:18:56 +00:00
typedef char bool;
2019-12-12 23:46:24 +00:00
#endif