hc
2023-11-22 9ca5fbcb63a8dcaee0527f96afb91dc4b4bd8fa9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _TYPES_H_
#define _TYPES_H_
 
typedef unsigned char        u8;
typedef unsigned short        u16;
typedef unsigned int        u32;
typedef unsigned long long    u64;
typedef char                s8;
typedef short                s16;
typedef int                    s32;
typedef long long            s64;
 
#define BIT(x)    (1UL<<(x))
 
#define err (-1)
 
#endif