summaryrefslogtreecommitdiff
path: root/pomodoro.h
diff options
context:
space:
mode:
Diffstat (limited to 'pomodoro.h')
-rw-r--r--pomodoro.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/pomodoro.h b/pomodoro.h
new file mode 100644
index 0000000..6888281
--- /dev/null
+++ b/pomodoro.h
@@ -0,0 +1,15 @@
+#ifndef POMODORO_H
+#define POMODORO_H
+
+enum PomodoroState {
+
+};
+
+struct Pomodoro {
+
+};
+
+void pomodoro_init(Pomodoro *p);
+void pomodoro_loop(Pomodoro *p);
+
+#endif