CS350 COS
COS
Loading...
Searching...
No Matches
stdbool.h
Go to the documentation of this file.
1
2#ifndef _STDBOOL_H_
3#define _STDBOOL_H_
4
5#define false 0
6#define true 1
7#define bool _Bool
8
9#endif /* _STDBOOL_H_ */
10