8 lines
92 B
C
8 lines
92 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
typedef _Bool bool;
|
||
|
#define true 1
|
||
|
#define false 0
|
||
|
#endif
|