calculator/calc.h

12 lines
154 B
C
Raw Permalink Normal View History

2025-03-09 10:15:33 +00:00
#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