diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-20 10:01:57 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-20 10:01:57 -0800 |
commit | aaed1aa81d33693a28d6bd49117e4130b00bfa56 (patch) | |
tree | 6c1767cffb8ff8eeeb802d658f68a951a83ab697 /hash.h | |
parent | e1bf988db6f77edc3da566b8f0dc768d3f887080 (diff) | |
download | txr-aaed1aa81d33693a28d6bd49117e4130b00bfa56.tar.gz txr-aaed1aa81d33693a28d6bd49117e4130b00bfa56.tar.bz2 txr-aaed1aa81d33693a28d6bd49117e4130b00bfa56.zip |
Changing ``obj_t *'' occurences to a ``val'' typedef. (Ideally,
we wouldn't have to declare object variables at all, so why
use an obtuse syntax to do so?)
Diffstat (limited to 'hash.h')
-rw-r--r-- | hash.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -24,11 +24,11 @@ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -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); +val hash_obj(val); +val make_hash(val weak_keys, val weak_vals); +val *gethash_l(val hash, val key); +val gethash(val hash, val key); +val remhash(val hash, val key); void hash_process_weak(void); void hash_init(void); |