aboutsummaryrefslogtreecommitdiffstats
path: root/src/calendar.h
blob: ed54c4f071eb6fa077c58937a7751f4b2b74f509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef EVERY_CALENDAR_H
#define EVERY_CALENDAR_H

enum every_calendar_entry_type {
	EVERY_CALENDAR_ENTRY_TYPE_ON,
	EVERY_CALENDAR_ENTRY_TYPE_EVERY,
};

struct every_calendar_entry {
	enum every_calendar_entry_type type;
};

struct every_calendar {
	struct every_calendar_entry *entries;
};

#endif