mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 12:20:20 +02:00
New functions: scm_c_make_vector, scm_c_make_hash_table.
This commit is contained in:
parent
b8446ce883
commit
00ffa0e7d6
22 changed files with 87 additions and 52 deletions
|
@ -55,6 +55,11 @@
|
|||
#include "libguile/hashtab.h"
|
||||
|
||||
|
||||
SCM
|
||||
scm_c_make_hash_table (unsigned long k)
|
||||
{
|
||||
return scm_c_make_vector (k, SCM_EOL);
|
||||
}
|
||||
|
||||
SCM
|
||||
scm_hash_fn_get_handle (SCM table,SCM obj,unsigned int (*hash_fn)(),SCM (*assoc_fn)(),void * closure)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue