aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorspv <spv@spv.sh>2025-09-21 00:07:50 -0400
committerspv <spv@spv.sh>2025-09-21 00:08:43 -0400
commit38d25483657e82eb546ecb8566214f830efba461 (patch)
treeb9568debc69bffc2595df42266c5550cdf05f3d2 /src/common.h
parent9ddf37ad959faaca72f1634dc61439cdd3c585f1 (diff)
refactoring ftw (now w/ README updates!)
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
new file mode 100644
index 0000000..4c01c24
--- /dev/null
+++ b/src/common.h
@@ -0,0 +1,14 @@
+#ifndef COMMON_H
+#define COMMON_H
+
+#include <sys/time.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <stdint.h>
+
+#include "consts.h"
+
+extern struct timeval* last_press;
+
+#endif