Loading...
Searching...
No Matches
24#if defined(scm_to_utf8_string) && SCM_MAJOR_VERSION >= 2
25#undef scm_to_utf8_string
26#undef scm_from_utf8_string
28#define SWIG_scm2str(s) scm_to_utf8_string(s)
30#define SWIG_str02scm(str) \
31 str ? scm_from_utf8_string(str) : SCM_BOOL_F
33#define scm_is_equal(obj1,obj2) scm_is_true(scm_equal_p(obj1,obj2))
34#define scm_is_exact(obj) scm_is_true(scm_exact_p(obj))
35#define scm_is_list(obj) scm_is_true(scm_list_p(obj))
36#define scm_is_procedure(obj) scm_is_true(scm_procedure_p(obj))