summaryrefslogtreecommitdiffstats
path: root/hash.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-09 18:05:43 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-09 18:05:43 -0800
commit42fdb7eb02593476b5030ce4a7dc471d4b01a49e (patch)
tree42848bdc2481b0b715e592064da5a171c2ae2807 /hash.h
parent6ce701137e44f06b68e772d2b8cbaef72800cd31 (diff)
downloadtxr-42fdb7eb02593476b5030ce4a7dc471d4b01a49e.tar.gz
txr-42fdb7eb02593476b5030ce4a7dc471d4b01a49e.tar.bz2
txr-42fdb7eb02593476b5030ce4a7dc471d4b01a49e.zip
Add hash removal.
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hash.h b/hash.h
index 0240546a..bdce904a 100644
--- a/hash.h
+++ b/hash.h
@@ -28,6 +28,7 @@ obj_t *hash_obj(obj_t *);
obj_t *make_hash(obj_t *weak_keys, obj_t *weak_vals);
obj_t **gethash_l(obj_t *hash, obj_t *key);
obj_t *gethash(obj_t *hash, obj_t *key);
+obj_t *remhash(obj_t *hash, obj_t *key);
void hash_process_weak(void);
void hash_init(void);