-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSysTypedef.h
More file actions
31 lines (24 loc) · 1 KB
/
SysTypedef.h
File metadata and controls
31 lines (24 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*********************************************************************************/
/*
* Author : Jeong Hyun Gu
* File name : SysTypedef.h
*/
/*********************************************************************************/
#ifndef __SYS_TYPEDEF_H__
#define __SYS_TYPEDEF_H__
/*********************************************************************************/
/**Define**/
typedef unsigned char tU8;
typedef signed char tS8;
typedef unsigned int tU16;
typedef signed int tS16;
typedef unsigned long tU32;
typedef signed long tS32;
/*********************************************************************************/
/**Enum**/
/*********************************************************************************/
/**Struct**/
/*********************************************************************************/
/**Function**/
/*********************************************************************************/
#endif //__SYS_TYPEDEF_H__