18 lines
194 B
C
18 lines
194 B
C
#ifndef BOOL_H
|
|
#define BOOL_H
|
|
|
|
#ifndef bool
|
|
#define bool int
|
|
#define false 0
|
|
#define true 1
|
|
#endif
|
|
|
|
#define SUCCESS true
|
|
#define FAILURE false
|
|
|
|
#ifndef Status
|
|
typedef int Status;
|
|
#endif
|
|
|
|
#endif
|