summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-12-09 20:17:53 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-12-09 20:17:53 -0800
commit440ed64162b328a51a911f2586c16513c2cfed67 (patch)
treecc6618d931585cbed81df544e35b2368c77e55e7 /hash.c
parent08ee01ea9e6bd1bedd565f9e0e1c1a8938710887 (diff)
downloadtxr-440ed64162b328a51a911f2586c16513c2cfed67.tar.gz
txr-440ed64162b328a51a911f2586c16513c2cfed67.tar.bz2
txr-440ed64162b328a51a911f2586c16513c2cfed67.zip
* hash.c (sethash): New function.
* hash.h (sethash): Declared. * lib.c (cobj_handle): New function. * lib.h (cobj_handle): Declared.
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/hash.c b/hash.c
index 82b1406f..ccc5aa10 100644
--- a/hash.c
+++ b/hash.c
@@ -258,6 +258,13 @@ val gethash(val hash, val key)
return cdr(found);
}
+val sethash(val hash, val key, val value)
+{
+ val new_p;
+ *gethash_l(hash, key, &new_p) = value;
+ return new_p;
+}
+
val remhash(val hash, val key)
{
struct hash *h = (struct hash *) hash->co.handle;