aboutsummaryrefslogtreecommitdiff
path: root/src/utils/types.h
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2021-04-04 14:03:26 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2021-04-04 14:03:26 +0200
commit48a608c8959fc696184bc1af2f67ecd07c0381ba (patch)
tree88e69733c3d85d289dc48b0d298daeaf721d0587 /src/utils/types.h
parent969f81bd7e2c0ccb07b9d49c6265421ce86369e0 (diff)
Add utilities functions
Diffstat (limited to 'src/utils/types.h')
-rw-r--r--src/utils/types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/utils/types.h b/src/utils/types.h
new file mode 100644
index 0000000..b06b160
--- /dev/null
+++ b/src/utils/types.h
@@ -0,0 +1,8 @@
+#ifndef TYPES_H
+#define TYPES_h
+
+typedef unsigned char u8;
+typedef unsigned short u16;
+typedef unsigned int u32;
+
+#endif