aboutsummaryrefslogtreecommitdiff
path: root/scheme.h
blob: 9417896e7bbfac04e51a3ee0550fa0db058a92f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SCHEME_H
#define SCHEME_H

#include <libguile.h>

SCM make_calendar(SCM path);

SCM calendar_get_attr(SCM calendar, SCM id, SCM attr);

SCM number_events(SCM calendar);

void init_calendar ();

#endif /* SCHEME_H */