diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-28 04:15:19 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-28 04:15:19 -0800 |
commit | 788cace2cb783db0b4df6338f89e6b026ae23e9b (patch) | |
tree | 62ef4b70c7631651f90da8af58c78bfe7877f454 /hash.c | |
parent | ec1f42927b870770d77aa196bdf7adfff4475210 (diff) | |
download | txr-788cace2cb783db0b4df6338f89e6b026ae23e9b.tar.gz txr-788cace2cb783db0b4df6338f89e6b026ae23e9b.tar.bz2 txr-788cace2cb783db0b4df6338f89e6b026ae23e9b.zip |
Code cleanup. All private functions static. Private stuff
in regex module not exposed in header. Etc.
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -128,17 +128,17 @@ val hash_obj(val obj) return num(ll_hash(obj)); } -val hash_equal(val self, val other) +static val hash_equal(val self, val other) { return self == other ? t : nil; } -void hash_destroy(val hash) +static void hash_destroy(val hash) { free(hash->co.handle); } -void hash_mark(val hash) +static void hash_mark(val hash) { struct hash *h = (struct hash *) hash->co.handle; cnum i; @@ -194,7 +194,7 @@ static struct cobj_ops hash_ops = { 0 }; -void hash_grow(struct hash *h) +static void hash_grow(struct hash *h) { cnum i; cnum new_modulus = 2 * h->modulus; |