- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypes.h
More file actions
Latest commit
28 lines (22 loc) · 655 Bytes
/
Copy pathtypes.h
File metadata and controls
28 lines (22 loc) · 655 Bytes
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
#ifndefTYPES_H
#defineTYPES_H
// Unsigned Integer Types
typedefunsigned charuint8_t;
typedefunsigned shortuint16_t;
typedefunsigned intuint32_t;
typedefunsigned long longuint64_t;
// Signed Integer Types
typedefsigned charint8_t;
typedefsigned shortint16_t;
typedefsigned intint32_t;
typedefsigned long longint64_t;
// Pointer / Size Types
typedefuint32_tsize_t;
typedefuint32_tuintptr_t;
// Boolean Types
typedef_Boolbool;
#definetrue 1
#definefalse 0
// Null Pointer
#defineNULL ((void*)0)
#endif// TYPES_H