mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
263 B
18 lines
263 B
9 years ago
|
/**
|
||
|
* \file
|
||
|
* Standard Types definition
|
||
|
*/
|
||
|
|
||
|
#ifndef _TYPE_DEF_H_
|
||
|
#define _TYPE_DEF_H_
|
||
|
|
||
|
typedef char I8;
|
||
|
typedef unsigned char U8;
|
||
|
typedef short I16;
|
||
|
typedef unsigned short U16;
|
||
|
typedef long I32;
|
||
|
typedef unsigned long U32;
|
||
|
typedef unsigned long long U64;
|
||
|
|
||
|
#endif
|