From: Matthew Flatt (mflatt at cs.utah.edu) Date: Wed Jan 11 07:04:08 EST 2006 |
|
At Tue, 10 Jan 2006 22:31:17 -0600, wayne at taxupdate.com wrote: > Scheme_Hash_Table * hash = scheme_make_hash_table(SCHEME_hash_string); `SCHEME_hash_string' is for C-level use only. It casts a given Scheme_Object* to a char* and hashes on the content of the NULL-terminated char*. To create a hash table for use from Scheme, use `SCHEME_hash_ptr' or scheme_make_hash_table_equal(). (I've updated the docs.) Matthew
Posted on the users mailing list. |
|