21 lines
247 B
C
21 lines
247 B
C
/*
|
|
File: stdbool.h
|
|
Author: Taylor Robbins
|
|
Date: 08\28\2025
|
|
*/
|
|
|
|
#ifndef _STDBOOL_H
|
|
#define _STDBOOL_H
|
|
|
|
#if LANGUAGE_IS_C
|
|
|
|
#define true 1
|
|
#define false 0
|
|
#define bool _Bool
|
|
|
|
#endif
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#endif // _STDBOOL_H
|