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#ifndef __STDBOOL_H__
2#define __STDBOOL_H__
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <stdint.h>
9
10enum {
11 false = 0,
12 true = 1,
13};
14
15typedef int8_t bool;
16
17#ifdef __cplusplus
18}
19#endif
20
21#endif// __STDBOOL_H__
int8_t bool
Boolean type definition.
Definition stdbool.h:15
s8_t int8_t
Definition stdint.h:6