hc
2023-12-02 57e32c52610e6a560beda60bf33c48f9f42306d5
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