21 lines
491 B
C
21 lines
491 B
C
|
/*
|
||
|
* <stdbool.h> - booleans
|
||
|
*
|
||
|
* This header is a part of the FENIX C Library and is free software.
|
||
|
* You can redistribute and/or modify it subject to the terms of the
|
||
|
* Clumsy Wolf Public License v4. For more details, see the file COPYING.
|
||
|
*
|
||
|
* The FENIX C Library is distributed WITH NO WARRANTY WHATSOEVER. See
|
||
|
* The CWPL for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef _STDBOOL_H
|
||
|
#define _STDBOOL_H
|
||
|
|
||
|
#define bool _Bool
|
||
|
#define true 1
|
||
|
#define false 0
|
||
|
#define __bool_true_false_are_defined 1
|
||
|
|
||
|
#endif
|