aboutsummaryrefslogtreecommitdiff
path: root/guile_type_helpers.h
blob: 2ff177e1b346abdc9bb3468d4c17fca9f8427670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GUILE_TYPE_HELPERS_H
#define GUILE_TYPE_HELPERS_H

#include <libguile.h>

#include "calendar.h"
#include "strbuf.h"

#define SCM_IS_LIST(x) scm_is_true(scm_list_p(x))

SCM scm_from_strbuf(strbuf* s);

#endif /* GUILE_TYPE_HELPERS_H */