calculator/calc.h
2025-03-09 20:15:33 +10:00

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