diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-09 18:05:43 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-09 18:05:43 -0800 |
commit | 42fdb7eb02593476b5030ce4a7dc471d4b01a49e (patch) | |
tree | 42848bdc2481b0b715e592064da5a171c2ae2807 /hash.h | |
parent | 6ce701137e44f06b68e772d2b8cbaef72800cd31 (diff) | |
download | txr-42fdb7eb02593476b5030ce4a7dc471d4b01a49e.tar.gz txr-42fdb7eb02593476b5030ce4a7dc471d4b01a49e.tar.bz2 txr-42fdb7eb02593476b5030ce4a7dc471d4b01a49e.zip |
Add hash removal.
Diffstat (limited to 'hash.h')
-rw-r--r-- | hash.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |