From c5e511a8b6e4488d35e18d9d2defba5508bfb8f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sat, 2 Mar 2019 17:48:17 +0100 Subject: Expose KEY(TRIE(content_line)) to scheme. --- guile_interface.scm.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'guile_interface.scm.c') diff --git a/guile_interface.scm.c b/guile_interface.scm.c index 0fd46505..41d13c3c 100644 --- a/guile_interface.scm.c +++ b/guile_interface.scm.c @@ -141,6 +141,24 @@ SCM scm_from_vcomponent(vcomponent* v) { return v->scm; } +SCM_DEFINE(vcomponent_attr_list, "%vcomponent-attribute-list", 1, 0, 0, + (SCM component), + "Returns list of all keys in component.") +{ + scm_assert_foreign_object_type (vcomponent_type, component); + vcomponent* comp = scm_foreign_object_ref (component, 0); + LLIST(strbuf)* keys = KEYS(TRIE(content_line))(&comp->clines); + + SCM llist = SCM_EOL; + FOR (LLIST, strbuf, s, keys) { + llist = scm_cons(scm_from_strbuf(s), llist); + } + + FFREE(LLIST(strbuf), keys); + + return llist; +} + void init_lib (void) { init_vcomponent_type(); -- cgit v1.2.3