summaryrefslogtreecommitdiff
path: root/src/entry.c
blob: 2d5f7d0c167a7fd20783f89e7ebbc1cd723f861d (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
47
48
49
50
51
52
53
54
#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;
}

bool entry_get_done(Entry *e) {
	return e->done;
}

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_done(Entry *e, bool done) {
	e->done = done;
}

void entry_set_url(Entry *e, char *url) {
	strcpy(e->url, url);
}