summaryrefslogtreecommitdiffstats
path: root/src/shorthand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shorthand.h')
-rwxr-xr-xsrc/shorthand.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/shorthand.h b/src/shorthand.h
new file mode 100755
index 0000000..b5174a1
--- /dev/null
+++ b/src/shorthand.h
@@ -0,0 +1,27 @@
1#ifndef SHORTHAND_H
2#define SHORTHAND_H
3
4#include <stdbool.h>
5#include <stddef.h>
6#include <stdint.h>
7
8typedef uint8_t u8;
9typedef uint16_t u16;
10typedef uint32_t u32;
11typedef uint64_t u64;
12typedef int8_t s8;
13typedef int16_t s16;
14typedef int32_t s32;
15typedef int64_t s64;
16typedef volatile u8 vu8;
17typedef volatile u16 vu16;
18typedef volatile u32 vu32;
19typedef volatile u64 vu64;
20typedef volatile s8 vs8;
21typedef volatile s16 vs16;
22typedef volatile s32 vs32;
23typedef volatile s64 vs64;
24typedef float f32;
25typedef double f64;
26
27#endif // SHORTHAND_H