14 lines
205 B
C
14 lines
205 B
C
#ifndef CALC_H
|
|
#define CALC_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
|
|
// typedef unsigned char bool;
|
|
// #define true 1;
|
|
// #define false 0;
|
|
|
|
typedef unsigned char u8;
|
|
typedef unsigned int uint;
|
|
|
|
#endif
|