11 lines
154 B
C
11 lines
154 B
C
#ifndef CALC_H
|
|
#define CALC_H
|
|
|
|
typedef unsigned char bool;
|
|
#define true 1;
|
|
#define false 0;
|
|
|
|
typedef unsigned char u8;
|
|
typedef unsigned int uint;
|
|
|
|
#endif
|