8 lines
89 B
C
8 lines
89 B
C
|
|
#ifndef _BOOL_H
|
||
|
|
#define _BOOL_H
|
||
|
|
#define FALSE 0
|
||
|
|
#define TRUE 1
|
||
|
|
typedef int BOOL;
|
||
|
|
#endif
|
||
|
|
|