summaryrefslogtreecommitdiff
path: root/src/entry.c
blob: c2958eda54a35942cc727b5194630505865c90d9 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include <string.h>

#include "entry.h"

// getters
int entry_get_id(Entry *e) {
	return e->id;
}

int entry_get_group_id(Entry *e) {
	return e->group_id;
}

struct tm entry_get_due_date(Entry *e) {
	return e->due_date;
}

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_id(Entry *e, int id) {
	e->id = id;
}

void entry_set_group_id(Entry *e, int id) {
	e->group_id = id;
}

void entry_set_due_date(Entry *e, struct tm due_date) {
	e->due_date = due_date;
}

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);
}