firmware-base/src/xtypes.h
2025-05-23 08:56:55 +02:00

16 lines
262 B
C

#ifndef TYPES_H
#define TYPES_H
#include <stdint.h>
typedef const char cchar;
typedef unsigned char uchar;
typedef unsigned long millis_t;
typedef unsigned short ushort;
typedef unsigned long ulong;
typedef long int lint;
typedef long long int llint;
#endif