summaryrefslogtreecommitdiff
path: root/src/coucal.c
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2014-06-15 08:31:41 +0000
committerXavier Roche <xroche@users.noreply.github.com>2014-06-15 08:31:41 +0000
commit218f6e2cd9279e079ee3c19e90109d6f20cf343d (patch)
treec53de827c92cae1f0946892298a2723286d2bec2 /src/coucal.c
parent967932e75d1ab512d4c5c3cb9443d90d68ec39a5 (diff)
Added coucal_fetch_value()
Diffstat (limited to 'src/coucal.c')
-rw-r--r--src/coucal.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/coucal.c b/src/coucal.c
index e925c75..38273ce 100644
--- a/src/coucal.c
+++ b/src/coucal.c
@@ -1156,8 +1156,7 @@ coucal_value* coucal_fetch_value_hashes(coucal hashtable,
return NULL;
}
-static coucal_value* coucal_fetch_value(coucal hashtable,
- coucal_key_const name) {
+coucal_value* coucal_fetch_value(coucal hashtable, coucal_key_const name) {
const coucal_hashkeys hashes = coucal_calc_hashes(hashtable, name);
return coucal_fetch_value_hashes(hashtable, name, &hashes);
}