- Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathtypes.h
More file actions
Latest commit
22 lines (17 loc) · 447 Bytes
/
Copy pathtypes.h
File metadata and controls
22 lines (17 loc) · 447 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndefINCLUDE_TYPES_H
#defineINCLUDE_TYPES_H
typedefunsigned charint8;
typedefint8byte;
typedefunsigned shortint16;
typedefint16byte2;
typedefunsigned longint32;
typedefint16byte4;
typedefunsigned long longint64;
typedefunsigned charuint8_t;
typedefunsigned shortuint16_t;
typedefunsigned longuint32_t;
typedefvoid (*void_function_t)(void);
#definebool char
#definetrue 1
#definefalse 0
#endif/* INCLUDE_TYPES_H */