aboutsummaryrefslogtreecommitdiff
path: root/src/system/inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/system/inc')
-rw-r--r--src/system/inc/system.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/system/inc/system.h b/src/system/inc/system.h
new file mode 100644
index 0000000..5338a0b
--- /dev/null
+++ b/src/system/inc/system.h
@@ -0,0 +1,17 @@
+#ifndef SYSTEM_H
+#define SYSTEM_H
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+int system_init(void);
+void system_deinit(void);
+void system_loop(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* SYSTEM_H */