16 lines
262 B
C
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 |