blob: 086db8c5f9eeb17299b4bac9dba5b7e8f34da9b1 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#include <string.h>
#include "entry.h"
// getters
char *entry_get_alt_due_date(Entry *e) {
return e->alt_due_date;
}
char *entry_get_title(Entry *e) {
return e->title;
}
char *entry_get_color(Entry *e) {
return e->color;
}
char *entry_get_highlight(Entry *e) {
return e->highlight;
}
char *entry_get_url(Entry *e) {
return e->url;
}
// setters
void entry_set_alt_due_date(Entry *e, char *alt_due_date) {
strcpy(e->alt_due_date, alt_due_date);
}
void entry_set_title(Entry *e, char *title) {
strcpy(e->title, title);
}
void entry_set_color(Entry *e, char *color) {
strcpy(e->color, color);
}
void entry_set_highlight(Entry *e, char *highlight) {
strcpy(e->highlight, highlight);
}
void entry_set_url(Entry *e, char *url) {
strcpy(e->url, url);
}
|