summaryrefslogblamecommitdiff
path: root/src/guile/guiledefs.c
blob: bf050af9ea490cab5e0f3042fc9f4d802b798241 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                                                         








                                                                  
 
#include <libguile.h>

struct scm_unused_struct * scm_undefined = SCM_UNDEFINED;
struct scm_unused_struct * scm_unspecified = SCM_UNSPECIFIED;

int defs_scm_is_eq(SCM x, SCM y) {
    return scm_is_eq(x, y);
}

void defs_scm_define_string(const char* name, const char* value) {
    scm_c_define(name, scm_from_utf8_string(value));
}