SSBM Decomp
Loading...
Searching...
No Matches
stdbool.h
Go to the documentation of this file.
1
3#ifndef STDBOOL_H
4#define STDBOOL_H
5
8typedef int bool;
9
13#define true 1
14
16#define false 0
17
18#endif
int bool
A signed integer used to contain boolean values.
Definition stdbool.h:8