SyterKit 0.4.0.x
SyterKit is a bare-metal framework
Loading...
Searching...
No Matches
stdbool.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0+ */
2
3#ifndef __STDBOOL_H__
4#define __STDBOOL_H__
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10#include <stdint.h>
11
29enum {
30 false = 0,
31 true = 1
32};
33
42typedef int8_t bool;
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif// __STDBOOL_H__
int8_t bool
Boolean type definition.
Definition stdbool.h:15
s8_t int8_t
Definition stdint.h:6