calculator/calc.h

15 lines
205 B
C
Raw Permalink Normal View History

2025-03-09 10:15:33 +00:00
#ifndef CALC_H
#define CALC_H
2025-03-09 11:01:58 +00:00
#include <stddef.h>
#include <stdbool.h>
// typedef unsigned char bool;
// #define true 1;
// #define false 0;
2025-03-09 10:15:33 +00:00
typedef unsigned char u8;
typedef unsigned int uint;
#endif