summaryrefslogtreecommitdiff
path: root/libguile/gh.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1997-04-24 09:24:03 +0000
committerJim Blandy <jimb@red-bean.com>1997-04-24 09:24:03 +0000
commit353793082f9566a8c546b339386e437e689d6478 (patch)
tree2291446dcda3f91d80da3afe84a8785d3c605191 /libguile/gh.h
parent819f936bd97d99999f8611ce770443be80efb18c (diff)
downloadguile-353793082f9566a8c546b339386e437e689d6478.tar.gz
Functions for finding variable bindings, grace à Tim Pierce.
* gh_data.c (gh_lookup, gh_module_lookup): New functions. * gh.h (gh_lookup, gh_module_lookup): New prototypes.
Diffstat (limited to 'libguile/gh.h')
-rw-r--r--libguile/gh.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libguile/gh.h b/libguile/gh.h
index 890b48883..94d575e52 100644
--- a/libguile/gh.h
+++ b/libguile/gh.h
@@ -148,6 +148,9 @@ SCM gh_vset(SCM vec, SCM pos, SCM val);
SCM gh_vref(SCM vec, SCM pos);
unsigned long gh_vector_length(SCM v);
+SCM gh_lookup (char *sname);
+SCM gh_module_lookup (SCM vector, char *sname);
+
SCM gh_cons(SCM x, SCM y);
#define gh_list scm_listify
unsigned long gh_list_length(SCM l);