blob: 6c9791fa5bcc92ed765b94f1112a47e86da21a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef EVERY_ENTRY_H
#define EVERY_ENTRY_H
#include <time.h>
#include <stdbool.h>
enum entry_type_e {
ENTRY_TYPE_ON,
ENTRY_TYPE_EVERY,
};
struct entry_interval_s {
int year, month, day, hour, minute, second;
};
/* type ON uses only start and warn */
struct entry_s {
enum entry_type_e type;
bool has_end;
time_t start, end;
struct entry_interval_s every, warn, stay;
bool urgent;
bool local;
char *msg;
};
/* test if an entry needs warning */
time_t* entry_is_active(struct entry_s *e, time_t now);
#endif
|